diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-03-14 15:46:55 +0100 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-03-14 15:46:55 +0100 |
commit | e1877d4f49ef414182f37448e1338822e5c77517 (patch) | |
tree | 98a5bed672017be341ea7d59fa64cf83ca944e2f | |
parent | Implement the highlight all feature for the find bar (enabled by default) (diff) | |
download | rekonq-e1877d4f49ef414182f37448e1338822e5c77517.tar.xz |
Fix capitalisation of "Highlight All"
-rw-r--r-- | src/findbar.cpp | 2 |
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); |