diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-07 18:34:57 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-07 18:34:57 +0200 |
commit | 844b918e9acdf55ee77efcd5726e34933f0dbd78 (patch) | |
tree | 99c259f19a32cb95f6e7ead3ce515c2aa3ab9d1f /src/mainwindow.cpp | |
parent | Fixing Bookmarks provider class, following (a bit..) pawel suggestions (diff) | |
download | rekonq-844b918e9acdf55ee77efcd5726e34933f0dbd78.tar.xz |
tools actions
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
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))); |