summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-07 18:34:57 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-07 18:34:57 +0200
commit844b918e9acdf55ee77efcd5726e34933f0dbd78 (patch)
tree99c259f19a32cb95f6e7ead3ce515c2aa3ab9d1f /src
parentFixing Bookmarks provider class, following (a bit..) pawel suggestions (diff)
downloadrekonq-844b918e9acdf55ee77efcd5726e34933f0dbd78.tar.xz
tools actions
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index ef0a3951..8090cb23 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -217,7 +217,7 @@ void MainWindow::setupActions()
actionCollection()->addAction(QLatin1String("open_location"), a);
connect(a, SIGNAL(triggered(bool)) , this, SLOT(slotOpenLocation()));
- a = new KAction(i18n("Private &Browsing..."), this);
+ a = new KAction(KIcon("view-media-artist"), i18n("Private &Browsing"), this);
a->setCheckable(true);
actionCollection()->addAction(QLatin1String("private_browsing"), a);
connect(a, SIGNAL(triggered(bool)) , this, SLOT(slotPrivateBrowsing()));
@@ -241,7 +241,7 @@ void MainWindow::setupActions()
actionCollection()->addAction(QLatin1String("page_source"), a);
connect(a, SIGNAL(triggered(bool)), this, SLOT(slotViewPageSource()));
- a = new KAction(KIcon("tools-report-bug"), i18n("Enable Web &Inspector"), this);
+ a = new KAction(KIcon("tools-report-bug"), i18n("Web &Inspector"), this);
a->setCheckable(true);
actionCollection()->addAction(QLatin1String("web_inspector"), a);
connect(a, SIGNAL(triggered(bool)), this, SLOT(slotToggleInspector(bool)));