--- a/QTfrontend/ui/widget/chatwidget.cpp Mon Nov 21 11:00:42 2011 +0100
+++ b/QTfrontend/ui/widget/chatwidget.cpp Mon Nov 21 21:23:23 2011 +0100
@@ -669,9 +669,9 @@
QString hlRegExp("^(.* )?%1[^-a-z0-9_]*( .*)?$");
QRegExp whitespace("\\s");
- m_highlights.append(QRegExp(hlRegExp.arg(m_userNick)));
+ m_highlights.append(QRegExp(hlRegExp.arg(m_userNick.toLower())));
- QFile file(cfgdir->absolutePath() + "/" + m_userNick + "_highlight.txt");
+ QFile file(cfgdir->absolutePath() + "/" + m_userNick.toLower() + "_highlight.txt");
if (file.exists() && (file.open(QIODevice::ReadOnly | QIODevice::Text)))
{
@@ -691,7 +691,7 @@
file.close();
}
- QFile file2(cfgdir->absolutePath() + "/" + m_userNick + "_hlregexp.txt");
+ QFile file2(cfgdir->absolutePath() + "/" + m_userNick.toLower() + "_hlregexp.txt");
if (file2.exists() && (file2.open(QIODevice::ReadOnly | QIODevice::Text)))
{