summaryrefslogtreecommitdiff
path: root/src/urlbar.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
commit64cac4862842c7efa2dc7591ab5b672255e49e4c (patch)
treec0ea60adb6761b738315a04d82008c8c15f15f27 /src/urlbar.h
parentfixing new mainWindow() behaviour, porting functions calling it (diff)
downloadrekonq-64cac4862842c7efa2dc7591ab5b672255e49e4c.tar.xz
(BIG commit) API change
I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions)
Diffstat (limited to 'src/urlbar.h')
-rw-r--r--src/urlbar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/urlbar.h b/src/urlbar.h
index 787032fb..6d8422d6 100644
--- a/src/urlbar.h
+++ b/src/urlbar.h
@@ -69,13 +69,13 @@ signals:
public slots:
void setUrl(const QUrl &url);
- void slotUpdateProgress(int progress);
- void slotUpdateUrl();
+ void updateProgress(int progress);
+ void updateUrl();
private slots:
- void slotActivated(const QString&);
- void slotLoadFinished(bool);
- void slotCleared();
+ void activated(const QString& url);
+ void loadFinished(bool);
+ void cleared();
protected:
virtual void paintEvent(QPaintEvent *event);