summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTirtha Chatterjee <tirtha.p.chatterjee@gmail.com>2011-08-22 15:53:26 +0530
committerTirtha Chatterjee <tirtha.p.chatterjee@gmail.com>2011-08-22 15:53:26 +0530
commitd254e6e604a7b2807a8348f486286579acafe86d (patch)
tree1b4383e39fb8c7da40ea21dc8266a8c7d1a388e3
parentSVN_SILENT made messages (.desktop file) (diff)
downloadrekonq-d254e6e604a7b2807a8348f486286579acafe86d.tar.xz
Corrected casing for 'Set Editable' action, also added an icon to it
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 12027a94..28480d03 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -514,7 +514,7 @@ void MainWindow::setupActions()
connect(a, SIGNAL(triggered(bool)), this, SLOT(showUserAgentSettings()));
// Editable Page
- a = new KAction(KIcon(""), i18n("set editable"), this);
+ a = new KAction(KIcon("document-edit"), i18n("Set Editable"), this);
a->setCheckable(true);
actionCollection()->addAction(QL1S("set_editable"), a);
connect(a, SIGNAL(triggered(bool)), this, SLOT(setEditable(bool)));