diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-24 00:52:48 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-24 00:52:48 +0200 |
commit | 02a120bd99986fdba26bcbd903f56b2661957e11 (patch) | |
tree | ce03593787a85af949f843034e952b63e7547be5 /src/previewimage.cpp | |
parent | popup Lionel's idea. In Italy we say "Capra e Cavoli" :D (diff) | |
parent | String Fixes -> KDE HIG (diff) | |
download | rekonq-02a120bd99986fdba26bcbd903f56b2661957e11.tar.xz |
Merge commit 'refs/merge-requests/1895' of git://gitorious.org/rekonq/mainline
Diffstat (limited to 'src/previewimage.cpp')
-rw-r--r-- | src/previewimage.cpp | 4 |
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; |