From 64cac4862842c7efa2dc7591ab5b672255e49e4c Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 10 Nov 2009 15:20:49 +0100 Subject: (BIG commit) API change I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions) --- src/mainwindow.h | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'src/mainwindow.h') diff --git a/src/mainwindow.h b/src/mainwindow.h index 02302aca..08a99b24 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -82,7 +82,7 @@ private: SidePanel *sidePanel(); public slots: - void slotUpdateBrowser(); + void updateBrowser(); void homePage(); /** @@ -115,45 +115,45 @@ protected: private slots: void postLaunch(); - void slotUpdateConfiguration(); - void slotBrowserLoading(bool); - void slotUpdateActions(); - void slotUpdateWindowTitle(const QString &title = QString()); + void updateConfiguration(); + void browserLoading(bool); + void updateActions(); + void updateWindowTitle(const QString &title = QString()); // history related - void slotOpenPrevious(); - void slotOpenNext(); + void openPrevious(); + void openNext(); // Find Action slots - void slotFind(const QString &); - void slotFindNext(); - void slotFindPrevious(); + void find(const QString &); + void findNext(); + void findPrevious(); // Zoom slots - void slotViewTextBigger(); - void slotViewTextNormal(); - void slotViewTextSmaller(); + void viewTextBigger(); + void viewTextNormal(); + void viewTextSmaller(); // File Menu slots - void slotOpenLocation(); - void slotFileOpen(); - void slotFileSaveAs(); + void openLocation(); + void fileOpen(); + void fileSaveAs(); - void slotViewPageSource(); - void slotViewFullScreen(bool enable); + void viewPageSource(); + void viewFullScreen(bool enable); // Tools Menu slots - void slotToggleInspector(bool enable); - void slotPrivateBrowsing(bool enable); + void toggleInspector(bool enable); + void privateBrowsing(bool enable); // Settings Menu slot - void slotPreferences(); + void preferences(); // clear private data void clearPrivateData(); - void slotAboutToShowBackMenu(); - void slotOpenActionUrl(QAction *action); + void aboutToShowBackMenu(); + void openActionUrl(QAction *action); private: MainView *m_view; -- cgit v1.2.1