]> cloud.milkyroute.net Git - dolphin.git/commitdiff
KParts::URLArgs split up [merged from branches/work/kparts_urlargs_split]
authorDavid Faure <faure@kde.org>
Mon, 13 Aug 2007 10:17:57 +0000 (10:17 +0000)
committerDavid Faure <faure@kde.org>
Mon, 13 Aug 2007 10:17:57 +0000 (10:17 +0000)
 into KParts::OpenUrlArguments and KParts::BrowserArguments.
This also allows the part to set arguments().mimeType() is the host didn't set it.

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

src/dolphinpart.cpp

index 675609b3dea3bfe3a4bac3707539dbbf5dfed709..776cd024e57feb395df0bec2ca4a9a6a16cb7358 100644 (file)
@@ -102,9 +102,8 @@ bool DolphinPart::openUrl(const KUrl& url)
     const QString prettyUrl = url.pathOrUrl();
     setWindowCaption(prettyUrl);
     m_extension->setLocationBarUrl(prettyUrl);
-    const KParts::URLArgs args = m_extension->urlArgs();
     m_view->setUrl(url);
-    if (args.reload)
+    if (arguments().reload())
         m_view->reload();
     emit started(0); // get the wheel to spin
     return true;