diff options
author | Rohan Garg <rohangarg@gmail.com> | 2011-01-14 02:44:04 +0530 |
---|---|---|
committer | Rohan Garg <rohangarg@gmail.com> | 2011-01-14 02:44:04 +0530 |
commit | 4311a749ecab72bef935958a32a3caaf60475711 (patch) | |
tree | b9f223b36dd014bd62d06c70a3a76db6edb7a3d8 | |
parent | Fix issues as pointed out by Krazy (diff) | |
download | rekonq-4311a749ecab72bef935958a32a3caaf60475711.tar.xz |
Fixes as pointed out by Krazy
* Fix duplicate includes
* Include own header first ( caused by 3dbfc06247db3c62a73f1f3022b648197ae24a00 )
-rw-r--r-- | src/opensearch/opensearchmanager.cpp | 1 | ||||
-rw-r--r-- | src/urlbar/webshortcutwidget.cpp | 2 | ||||
-rw-r--r-- | src/webtab.cpp | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/opensearch/opensearchmanager.cpp b/src/opensearch/opensearchmanager.cpp index 9d2a52e4..41e46ec6 100644 --- a/src/opensearch/opensearchmanager.cpp +++ b/src/opensearch/opensearchmanager.cpp @@ -43,7 +43,6 @@ #include <KUrl> #include <kio/scheduler.h> #include <KService> -#include <KStandardDirs> #include <KDE/KMessageBox> #include <KUriFilterData> #include <KConfigGroup> diff --git a/src/urlbar/webshortcutwidget.cpp b/src/urlbar/webshortcutwidget.cpp index c687108a..629e7fb2 100644 --- a/src/urlbar/webshortcutwidget.cpp +++ b/src/urlbar/webshortcutwidget.cpp @@ -18,8 +18,8 @@ * Boston, MA 02110-1301, USA. */ -#include "rekonq_defines.h" #include "webshortcutwidget.h" +#include "rekonq_defines.h" #include <QtCore/QTimer> #include <QtCore/QSet> diff --git a/src/webtab.cpp b/src/webtab.cpp index 7b741bf2..1305747e 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -26,8 +26,8 @@ // Self Includes -#include "rekonq_defines.h" #include "webtab.h" +#include "rekonq_defines.h" #include "webtab.moc" // Auto Includes #include "rekonq.h" |