aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/logview/LogViewWindow.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-11-04 10:36:42 +0000
committerGravatar un1versal2015-11-04 10:36:42 +0000
commit85b3d07778a1a465bef24ab1046d0afb184d5391 (patch)
tree7ada1d6ceacb58ccbb8abaa14adc99d9dd074d2a /src/modules/logview/LogViewWindow.cpp
parentFix icon assignments cut != remove help != other (diff)
downloadKVIrc-85b3d07778a1a465bef24ab1046d0afb184d5391.tar.gz
KVIrc-85b3d07778a1a465bef24ab1046d0afb184d5391.tar.bz2
KVIrc-85b3d07778a1a465bef24ab1046d0afb184d5391.zip
Fix button label capitalization
Diffstat (limited to 'src/modules/logview/LogViewWindow.cpp')
-rw-r--r--src/modules/logview/LogViewWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/logview/LogViewWindow.cpp b/src/modules/logview/LogViewWindow.cpp
index 20fc11860..ae5e6a93d 100644
--- a/src/modules/logview/LogViewWindow.cpp
+++ b/src/modules/logview/LogViewWindow.cpp
@@ -171,7 +171,7 @@ LogViewWindow::LogViewWindow()
pLayout->addWidget(m_pToDateEdit,9,1);
connect(m_pEnableToFilter,SIGNAL(toggled(bool)),m_pToDateEdit,SLOT(setEnabled(bool)));
- m_pFilterButton = new QPushButton(__tr2qs_ctx("Apply filter","log"),m_pSearchTab);
+ m_pFilterButton = new QPushButton(__tr2qs_ctx("Apply Filter","log"),m_pSearchTab);
pLayout->addWidget(m_pFilterButton,10,1);
connect(m_pFilterButton,SIGNAL(clicked()),this,SLOT(applyFilter()));