summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanagiotis Papadopoulos <pano_90@gmx.net>2009-10-23 21:44:30 +0200
committerPanagiotis Papadopoulos <pano_90@gmx.net>2009-10-23 21:44:30 +0200
commitcf4bc44f00a4f556e1cce5bbbebcb0bb253fedc6 (patch)
treebcb375aa468b4b1d63e99d63416ea5536f55a5d5
parentFix strings -> KDE HIG (diff)
downloadrekonq-cf4bc44f00a4f556e1cce5bbbebcb0bb253fedc6.tar.xz
String Fixes -> KDE HIG
-rw-r--r--src/previewimage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/previewimage.cpp b/src/previewimage.cpp
index 79af246d..99969893 100644
--- a/src/previewimage.cpp
+++ b/src/previewimage.cpp
@@ -263,12 +263,12 @@ void PreviewImage::contextMenuEvent(QContextMenuEvent* event)
KActionMenu* PreviewImage::historyMenu()
{
- KActionMenu *histMenu = new KActionMenu(KIcon("insert-image"), i18n("Set page to preview"), this);
+ KActionMenu *histMenu = new KActionMenu(KIcon("insert-image"), i18n("Set Page to Preview"), this);
QList<HistoryItem> history = Application::historyManager()->history();
if(history.isEmpty())
{
- KAction *a = new KAction(i18n("History is empty"), this);
+ KAction *a = new KAction(i18n("History is Empty"), this);
a->setEnabled(false);
histMenu->addAction(a);
return histMenu;