X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebasichandler.cpp;h=fbfc76c2f6ad3f8e4864fce537d1789f89a2930b;hp=580739cb6b543d55ff13970304b03a7e79cb8682;hb=79d10f90b17200eac2a977cc6ca5f70fed9da739;hpb=0cfeb61fd9ed1c415bcd88796010843e87150e9c diff --git a/src/core/corebasichandler.cpp b/src/core/corebasichandler.cpp index 580739cb..fbfc76c2 100644 --- a/src/core/corebasichandler.cpp +++ b/src/core/corebasichandler.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,6 +33,9 @@ CoreBasicHandler::CoreBasicHandler(CoreNetwork *parent) connect(this, SIGNAL(putCmd(QString, const QList &, const QByteArray &)), network(), SLOT(putCmd(QString, const QList &, const QByteArray &))); + connect(this, SIGNAL(putCmd(QString, const QList> &, const QByteArray &)), + network(), SLOT(putCmd(QString, const QList> &, const QByteArray &))); + connect(this, SIGNAL(putRawLine(const QByteArray &)), network(), SLOT(putRawLine(const QByteArray &))); }