diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-09-26 19:36:26 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-09-26 19:36:26 +0000 |
| commit | 776b66963475b2680f4ef8f60e39aab14a55bf36 (patch) | |
| tree | 949ebacb1d1c4d9b2a00b9ae68bf487fcfd1488f | |
| parent | 55c166a5356dff281533ca455cfe633f2721bf17 (diff) | |
| download | qmmp-776b66963475b2680f4ef8f60e39aab14a55bf36.tar.gz qmmp-776b66963475b2680f4ef8f60e39aab14a55bf36.tar.bz2 qmmp-776b66963475b2680f4ef8f60e39aab14a55bf36.zip | |
fixed buffering progress
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@566 90c681e8-e032-0410-971d-27865f9a5e38
| -rw-r--r-- | src/ui/mainwindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index e2e3709ce..22a975b69 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -137,8 +137,7 @@ MainWindow::MainWindow(const QStringList& args, BuiltinCommandLineOption* option SLOT(showDecoderState(const DecoderState&))); connect(m_core, SIGNAL(titleChanged(const QString&)), SLOT(changeTitle(const QString&))); - connect(m_core, SIGNAL(bufferingProgress(int)), TextScroller::getPointer(), - SLOT(setProgress(int)));*/ + */ Visual::initialize(this, m_visMenu, SLOT(updateActions())); Visual::add(m_vis); @@ -149,6 +148,8 @@ MainWindow::MainWindow(const QStringList& args, BuiltinCommandLineOption* option connect(m_core, SIGNAL(elapsedChanged(qint64)),m_playlist, SLOT(setTime(qint64))); connect(m_core, SIGNAL(elapsedChanged(qint64)),m_titlebar, SLOT(setTime(qint64))); connect(m_core, SIGNAL(metaDataChanged()),SLOT(showMetaData())); + connect(m_core, SIGNAL(bufferingProgress(int)), TextScroller::getPointer(), + SLOT(setProgress(int))); updateEQ(); |
