summaryrefslogtreecommitdiff
path: root/src/findbar.cpp
diff options
context:
space:
mode:
authorYoann Laissus <yoann.laissus@gmail.com>2010-03-14 15:46:55 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-03-15 10:09:40 +0100
commitce0689fc4a3bd27d46dc81b95ff94b0f53ccfff4 (patch)
tree757e9b07d51dd64c327787805f366b9b9cc673a8 /src/findbar.cpp
parentImplement the highlight all feature for the find bar (enabled by default) (diff)
downloadrekonq-ce0689fc4a3bd27d46dc81b95ff94b0f53ccfff4.tar.xz
Fix capitalisation of "Highlight All"
Diffstat (limited to 'src/findbar.cpp')
-rw-r--r--src/findbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/findbar.cpp b/src/findbar.cpp
index 94def263..7cbe9d17 100644
--- a/src/findbar.cpp
+++ b/src/findbar.cpp
@@ -54,7 +54,7 @@ FindBar::FindBar(QWidget *parent)
, m_lineEdit(new KLineEdit(this))
, m_hideTimer(new QTimer(this))
, m_matchCase(new QCheckBox(i18n("&Match case"), this))
- , m_highlightAll(new QCheckBox(i18n("&Highlight All"), this))
+ , m_highlightAll(new QCheckBox(i18n("&Highlight all"), this))
{
// mainwindow pointer
MainWindow *window = qobject_cast<MainWindow *>(parent);