X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Ftabcompleter.cpp;h=cd8209b04636895424538b347c7968cdb8feda97;hb=8f2ee00f4edef1693628d3af0bdee84d725eb754;hp=957ddb00e3e58bec3da7526ecccfb38838d85a13;hpb=e2188dc438be6f3eb0d9cdf47d28821aefe9835e;p=quassel.git diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 957ddb00..cd8209b0 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -46,11 +46,10 @@ TabCompleter::TabCompleter(MultiLineEdit *_lineEdit) _nickSuffix(": ") { // This Action just serves as a container for the custom shortcut and isn't actually handled; - // apparently, using tab as an Action shortcut in an input widget is unreliable on some platforms (e.g. OS/2) + // apparently, using tab as an Action shortcut in an input widget is unreliable on some platforms (e.g. OS/2) _lineEdit->installEventFilter(this); ActionCollection *coll = GraphicalUi::actionCollection("General"); - QAction *a = coll->addAction("TabCompletionKey", new Action(tr("Tab completion"), coll, - this, SLOT(onTabCompletionKey()), QKeySequence(Qt::Key_Tab))); + QAction *a = coll->addAction("TabCompletionKey", new Action(tr("Tab completion"), coll, this, &TabCompleter::onTabCompletionKey, QKeySequence(Qt::Key_Tab))); a->setEnabled(false); // avoid catching the shortcut } @@ -80,8 +79,8 @@ void TabCompleter::buildCompletionList() if (!_currentNetwork) return; - QString tabAbbrev = _lineEdit->text().left(_lineEdit->cursorPosition()).section(QRegExp("[^#\\w\\d-_\\[\\]{}|`^.\\\\]"), -1, -1); - QRegExp regex(QString("^[-_\\[\\]{}|`^.\\\\]*").append(QRegExp::escape(tabAbbrev)), Qt::CaseInsensitive); + QString tabAbbrev = _lineEdit->text().left(_lineEdit->cursorPosition()).section(QRegExp(R"([^#\w\d-_\[\]{}|`^.\\])"), -1, -1); + QRegExp regex(QString(R"(^[-_\[\]{}|`^.\\]*)").append(QRegExp::escape(tabAbbrev)), Qt::CaseInsensitive); // channel completion - add all channels of the current network to the map if (tabAbbrev.startsWith('#')) {