X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbasichandler.cpp;h=c53468f069f56539f797fbc8405f8610307a2e4e;hp=0717cbf3be4a04ba673c60bcc92e2f6a95671cb4;hb=16f22647e6890d3eb8c3e94f7a0700e12fa29e44;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/common/basichandler.cpp b/src/common/basichandler.cpp index 0717cbf3..c53468f0 100644 --- a/src/common/basichandler.cpp +++ b/src/common/basichandler.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-10 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,8 +15,9 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include "basichandler.h" #include @@ -51,7 +52,11 @@ const QHash &BasicHandler::handlerHash() { if (!_initDone) { for (int i = metaObject()->methodOffset(); i < metaObject()->methodCount(); i++) { - QString methodSignature(metaObject()->method(i).signature()); +#if QT_VERSION >= 0x050000 + QString methodSignature = metaObject()->method(i).methodSignature(); +#else + QString methodSignature = metaObject()->method(i).signature(); +#endif if (methodSignature.startsWith("defaultHandler")) { _defaultHandler = i; continue;