]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fix the other bug reported by BCoppens: the tab title was the full path, until switch...
authorDavid Faure <faure@kde.org>
Sun, 11 Nov 2007 21:03:59 +0000 (21:03 +0000)
committerDavid Faure <faure@kde.org>
Sun, 11 Nov 2007 21:03:59 +0000 (21:03 +0000)
The logic in KonqView::setCaption was being confused by the part url still being empty; let's do things in the right order here.
+ .rc cleanups

svn path=/trunk/KDE/kdebase/apps/; revision=735495

src/dolphinpart.cpp
src/dolphinpart.rc

index 3a76286e70f889ef095b0f9cf20903dc9bb7706c..2f52447ec2a3eafe09f9c6d4a9f716dfc9cd0918 100644 (file)
@@ -93,6 +93,9 @@ DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QStringLi
     // TODO provide these actions in the menu, merged with the existing view-mode-actions somehow
     // [Q_PROPERTY introspection?]
 
+    // TODO sort_by_* actions
+    // TODO show_*_info actions
+
     // TODO connect to urlsDropped
 
     // TODO there was a "always open a new window" (when clicking on a directory) setting in konqueror
@@ -137,14 +140,14 @@ KAboutData* DolphinPart::createAboutData()
 
 bool DolphinPart::openUrl(const KUrl& url)
 {
-    const QString prettyUrl = url.pathOrUrl();
-    emit setWindowCaption(prettyUrl);
-    emit m_extension->setLocationBarUrl(prettyUrl);
     const bool reload = arguments().reload();
     if (m_view->url() == url && !reload) { // DolphinView won't do anything in that case, so don't emit started
         return true;
     }
     setUrl(url); // remember it at the KParts level
+    const QString prettyUrl = url.pathOrUrl();
+    emit setWindowCaption(prettyUrl);
+    emit m_extension->setLocationBarUrl(prettyUrl);
     m_view->setUrl(url);
     if (reload)
         m_view->reload();
index 85be1e5be53707c8c2dd7a168cb854ea33a3dbff..0f9dd276fbe3a248063f96c2c0bbe818a0beea3c 100644 (file)
@@ -1,5 +1,5 @@
 <!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<kpartgui version="2" name="dolphinpart" >
+<kpartgui version="3" name="dolphinpart" >
  <MenuBar>
    <Menu name="edit">
    <Action name="select_all" />
    <Action name="show_preview" />
    <Action name="show_in_groups" />
    <Action name="show_hidden_files" />
-   <Menu name="panels">
-    <text context="@title:menu">Panels</text>
-    <Action name="show_places_panel" />
-    <Action name="show_info_panel" />
-    <Action name="show_folders_panel" />
-    <Action name="show_terminal_panel" />
-   </Menu>
-   <Menu name="navigation_bar">
-    <text context="@title:menu">Navigation Bar</text>
-    <Action name="editable_location" />
-    <Action name="edit_location" />
-   </Menu>
    <Separator/>
    <Action name="view_properties" />
   </Menu>