diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:59:00 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:59:00 +0200 |
commit | 2b11a757cf04ca06329a0b5d11eb6c3bae77a200 (patch) | |
tree | ff5312f6248a4261fb39dd331b7f034385015d7c /src/urlbar/urlbar.cpp | |
parent | A coding style round (diff) | |
download | rekonq-2b11a757cf04ca06329a0b5d11eb6c3bae77a200.tar.xz |
New rekonq_defines.h
Speed up compilation & linking on Win, Lin & Mac. Step 1
Diffstat (limited to 'src/urlbar/urlbar.cpp')
-rw-r--r-- | src/urlbar/urlbar.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index 34cbb9aa..d8f9e9bd 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -51,9 +51,6 @@ #include <QTimer> #include <QVBoxLayout> -// Defines -#define QL1S(x) QLatin1String(x) - IconButton::IconButton(QWidget *parent) : QToolButton(parent) @@ -279,7 +276,7 @@ void UrlBar::loadFinished() if (ReKonfig::kgetList()) { IconButton *bt = addRightIcon(UrlBar::KGet); - connect(bt, SIGNAL(clicked(QPoint)), _tab->page(), SLOT(downloadAllContentsWithKGet())); + connect(bt, SIGNAL(clicked(QPoint)), _tab->page(), SLOT(downloadAllContentsWithKGet(QPoint))); } // show RSS @@ -293,7 +290,7 @@ void UrlBar::loadFinished() if (_tab->url().scheme() == QL1S("https")) { IconButton *bt = addRightIcon(UrlBar::SSL); - connect(bt, SIGNAL(clicked(QPoint)), _tab->page(), SLOT(showSSLInfo())); + connect(bt, SIGNAL(clicked(QPoint)), _tab->page(), SLOT(showSSLInfo(QPoint))); } update(); |