summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-01-09 02:44:50 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-01-09 02:44:50 +0100
commita14af0874d4ceac743727af1665ea1d5f15839d9 (patch)
tree1bcfa9d51e54e76440be62916e54821d9b997643 /src/mainwindow.h
parentLast commit before loadPage REMOVAL.. (diff)
downloadrekonq-a14af0874d4ceac743727af1665ea1d5f15839d9.tar.xz
removed LoadPage method to semplify API
Now we have just loadUrl slot to run pages..
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index fb251657..e34c799e 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -45,9 +45,6 @@ class WebView;
* This class serves as the main window for rekonq.
* It handles the menus, toolbars, and status bars.
*
- * @short Main window class
- * @author Andrea Diamantini adjam7_AT_gmail_DOT_com
- *
*/
class MainWindow : public KXmlGuiWindow
@@ -66,11 +63,11 @@ private:
void setupActions();
void setupCustomMenu();
-private slots:
-
- void loadPage(const QString &url);
+public slots:
void slotHome();
void loadUrl(const KUrl &url);
+
+private slots:
void slotLoadProgress(int);
void slotUpdateStatusbar(const QString &string);
void slotUpdateWindowTitle(const QString &title = QString());