diff options
| author | Peter Penz <[email protected]> | 2007-06-10 06:36:31 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-06-10 06:36:31 +0000 |
| commit | 3e66730d284c2f4a79cc350ae209f05001d798ad (patch) | |
| tree | 6d2442ae6115b50a38adeb241a7427c161e27942 | |
| parent | 1e31a38af9ff7e212f097bcc95f67d9912da1eb4 (diff) | |
don't connect to slots which are not available anymore
svn path=/trunk/KDE/kdebase/apps/; revision=673397
| -rw-r--r-- | src/dolphinviewcontainer.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp index de0e04459..c05c4251c 100644 --- a/src/dolphinviewcontainer.cpp +++ b/src/dolphinviewcontainer.cpp @@ -83,9 +83,6 @@ DolphinViewContainer::DolphinViewContainer(DolphinMainWindow* mainWindow, m_topLayout->setSpacing(0); m_topLayout->setMargin(0); - connect(m_mainWindow, SIGNAL(activeViewChanged()), - this, SLOT(updateActivationState())); - QClipboard* clipboard = QApplication::clipboard(); connect(clipboard, SIGNAL(dataChanged()), this, SLOT(updateCutItems())); @@ -119,10 +116,6 @@ DolphinViewContainer::DolphinViewContainer(DolphinMainWindow* mainWindow, this, SLOT(updateStatusBar())); connect(m_dirLister, SIGNAL(completed()), this, SLOT(updateItemCount())); - connect(m_dirLister, SIGNAL(completed()), - this, SLOT(updateCutItems())); - connect(m_dirLister, SIGNAL(newItems(const KFileItemList&)), - this, SLOT(generatePreviews(const KFileItemList&))); connect(m_dirLister, SIGNAL(infoMessage(const QString&)), this, SLOT(showInfoMessage(const QString&))); connect(m_dirLister, SIGNAL(errorMessage(const QString&)), |
