identd: Remove unneeded strict attribute
[quassel.git] / src / core / corehighlightrulemanager.cpp
index c35ca50..d7ccd8f 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2016 by the Quassel Project                        *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -53,5 +53,5 @@ void CoreHighlightRuleManager::save() const
 
 bool CoreHighlightRuleManager::match(const RawMessage &msg, const QString &currentNick, const QStringList &identityNicks)
 {
-    return _match(msg.text, msg.sender, msg.type, msg.flags, msg.target, currentNick, identityNicks);
+    return match(msg.text, msg.sender, msg.type, msg.flags, msg.target, currentNick, identityNicks);
 }