diff options
| author | Frank Reininghaus <[email protected]> | 2010-02-23 20:34:33 +0000 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2010-02-23 20:34:33 +0000 |
| commit | af46cf7666564847b6a9a752a11ce55485bff0eb (patch) | |
| tree | 2886d1b3514234f09f35ce2e2efd695bf59b20af /src/dolphinpart.cpp | |
| parent | e6ba74c5ae544dbc55c5e258adc7f23924993e5b (diff) | |
Remove all code that is related to DolphinController's
requestUrlChange signal. This signal was removed in r1080351, so the
code isn't needed any more.
svn path=/trunk/KDE/kdebase/apps/; revision=1095213
Diffstat (limited to 'src/dolphinpart.cpp')
| -rw-r--r-- | src/dolphinpart.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index e5151c0fb..0a17c7884 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -106,8 +106,6 @@ DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QVariantL this, SLOT(slotSelectionChanged(KFileItemList))); connect(m_view, SIGNAL(requestItemInfo(KFileItem)), this, SLOT(slotRequestItemInfo(KFileItem))); - connect(m_view, SIGNAL(requestUrlChange(KUrl)), - this, SLOT(slotRequestUrlChange(KUrl))); connect(m_view, SIGNAL(modeChanged()), this, SIGNAL(viewModeChanged())); // relay signal connect(m_view, SIGNAL(redirection(KUrl, KUrl)), @@ -456,16 +454,6 @@ void DolphinPart::slotRedirection(const KUrl& oldUrl, const KUrl& newUrl) } } -void DolphinPart::slotRequestUrlChange(const KUrl& url) -{ - if (m_view->url() != url) { - // If the view URL is not equal to 'url', then an inner URL change has - // been done (e. g. by activating an existing column in the column view). - openUrl(url); - emit m_extension->openUrlNotify(); - } -} - //// void DolphinPartBrowserExtension::restoreState(QDataStream &stream) |
