diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-03-14 15:46:55 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-15 10:09:40 +0100 |
commit | ce0689fc4a3bd27d46dc81b95ff94b0f53ccfff4 (patch) | |
tree | 757e9b07d51dd64c327787805f366b9b9cc673a8 /src | |
parent | Implement the highlight all feature for the find bar (enabled by default) (diff) | |
download | rekonq-ce0689fc4a3bd27d46dc81b95ff94b0f53ccfff4.tar.xz |
Fix capitalisation of "Highlight All"
Diffstat (limited to 'src')
-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); |