diff options
| author | Tirtha Chatterjee <tirtha.p.chatterjee@gmail.com> | 2011-08-22 15:53:26 +0530 | 
|---|---|---|
| committer | Tirtha Chatterjee <tirtha.p.chatterjee@gmail.com> | 2011-08-22 15:53:26 +0530 | 
| commit | d254e6e604a7b2807a8348f486286579acafe86d (patch) | |
| tree | 1b4383e39fb8c7da40ea21dc8266a8c7d1a388e3 | |
| parent | SVN_SILENT made messages (.desktop file) (diff) | |
| download | rekonq-d254e6e604a7b2807a8348f486286579acafe86d.tar.xz | |
Corrected casing for 'Set Editable' action, also added an icon to it
| -rw-r--r-- | src/mainwindow.cpp | 2 | 
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))); | 
