X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=cd8209b04636895424538b347c7968cdb8feda97;hp=ae37fd96b5048b8890ea8fe947159863b3d78631;hb=f9efdde7f3a6004af8f834c409cfa6ae1d877692;hpb=900cce213a6ed000b7131a05a0dec7d04b35b023 diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index ae37fd96..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 }