summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-01-15 01:01:32 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-01-15 01:01:32 +0100
commit1e222f437c3e521dc1930b31680a437cc329a078 (patch)
tree6470c24e29f654528f6cbfb9cb29129282aeeba6
parentFixed unconnected STOP web action (diff)
downloadrekonq-1e222f437c3e521dc1930b31680a437cc329a078.tar.xz
- cmake 2.6.2
- changed web inspector icon
-rw-r--r--CMakeLists.txt3
-rw-r--r--src/mainwindow.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 70606704..d9ef464d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,12 +18,13 @@ SET(REKONQ_VERSION_STRING
# =================================================================================================
# minimum cmake required
-CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0)
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6.2)
# =================================================================================================
SET(QT_MIN_VERSION 4.4.0)
+FIND_PACKAGE(Qt4 REQUIRED)
FIND_PACKAGE(KDE4 REQUIRED)
INCLUDE(MacroOptionalFindPackage)
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 2086ff81..d1f60b5d 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -193,7 +193,7 @@ void MainWindow::setupActions()
actionCollection()->addAction( QLatin1String("downloads"), a);
connect( a, SIGNAL( triggered(bool) ), this, SLOT( slotDownloadManager() ) );
- a = new KAction( KIcon("page-zoom"), i18n("Enable Web &Inspector"), this );
+ a = new KAction( KIcon("tools-report-bug"), i18n("Enable Web &Inspector"), this );
a->setCheckable(true);
actionCollection()->addAction( QLatin1String("web inspector"), a );
connect( a, SIGNAL( triggered(bool) ), this, SLOT( slotToggleInspector(bool) ) );