diff options
| author | Mathieu Tarral <[email protected]> | 2015-02-04 10:22:03 +0100 |
|---|---|---|
| committer | Emmanuel Pescosta <[email protected]> | 2015-02-04 10:22:03 +0100 |
| commit | c7258487094c7e16258ad90e384c3a87605dfc95 (patch) | |
| tree | 78d6a990ebf0569bd9fe609913143f064f1d09c5 /src/dolphinmainwindow.h | |
| parent | b15ee4cf70a23e04a74b368dce7ab2a20afe944d (diff) | |
Port Dolphin away from KApplication, KCmdLineArgs and K4AboutData
Diffstat (limited to 'src/dolphinmainwindow.h')
| -rw-r--r-- | src/dolphinmainwindow.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h index 8c8d42ee4..e3188aee5 100644 --- a/src/dolphinmainwindow.h +++ b/src/dolphinmainwindow.h @@ -36,7 +36,6 @@ typedef KIO::FileUndoManager::CommandType CommandType; class DolphinViewActionHandler; -class DolphinApplication; class DolphinSettingsDialog; class DolphinViewContainer; class DolphinRemoteEncoding; @@ -58,7 +57,6 @@ class DolphinMainWindow: public KXmlGuiWindow Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.kde.dolphin.MainWindow") Q_PROPERTY(int id READ getId SCRIPTABLE true) - friend class DolphinApplication; public: DolphinMainWindow(); @@ -121,6 +119,11 @@ public slots: /** Stores all settings and quits Dolphin. */ void quit(); + /** + * Opens a new tab showing the URL \a url and activates the tab. + */ + void openNewActivatedTab(const QUrl& url); + signals: /** * Is sent if the selection of the currently active view has @@ -336,11 +339,6 @@ private slots: void openNewTab(const QUrl& url); /** - * Opens a new tab showing the URL \a url and activates the tab. - */ - void openNewActivatedTab(const QUrl& url); - - /** * Opens the selected folder in a new tab. */ void openInNewTab(); |
