aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/options
diff options
context:
space:
mode:
authorGravatar un1versal2015-10-22 14:21:36 +0100
committerGravatar un1versal2015-10-22 14:22:39 +0100
commite3f3874eddfdd121d80c88e4d6e07ef59f6b2a69 (patch)
tree73a7100cd0ded4abc6f71af038496dcc24d0c8e9 /src/modules/options
parentmore windows stuff, run mkcreateinstanceproc.sh (diff)
downloadKVIrc-e3f3874eddfdd121d80c88e4d6e07ef59f6b2a69.tar.gz
KVIrc-e3f3874eddfdd121d80c88e4d6e07ef59f6b2a69.tar.bz2
KVIrc-e3f3874eddfdd121d80c88e4d6e07ef59f6b2a69.zip
Fix oops! occurrence
Diffstat (limited to 'src/modules/options')
-rw-r--r--src/modules/options/OptionsWidget_alertsAndHighlighting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp b/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp
index 6378f7bcb..ac4081108 100644
--- a/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp
+++ b/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp
@@ -71,7 +71,7 @@ OptionsWidget_highlighting::OptionsWidget_highlighting(QWidget * parent)
QGridLayout * g = new QGridLayout();
gbox->setLayout(g);
- m_pHighlightAllOccurencesRadioButton = new QRadioButton(__tr2qs_ctx("Highlight every occurence of a word inside text","options"),gbox);
+ m_pHighlightAllOccurencesRadioButton = new QRadioButton(__tr2qs_ctx("Highlight every occurrence of a word inside text","options"),gbox);
g->addWidget(m_pHighlightAllOccurencesRadioButton,0,0,1,2);
m_pHighlightAllOccurencesRadioButton->setChecked(KVI_OPTION_BOOL(KviOption_boolUseFullWordHighlighting));
KviTalToolTip::add(m_pHighlightAllOccurencesRadioButton,__tr2qs_ctx("<center>This selection will cause KVIrc to search for the highlighted words or nicknames inside the whole text. This will also highlight parts of words (eg. if your nickname is Mark then Markus will be highlighted too).</center>","options"));