X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebufferviewconfig.cpp;h=dff072de80feee327fe7ec83ec038e25ea264bd3;hp=5f5a1b460801c8da97b051957d6c0fec3aa9d0ee;hb=3d464695bf5b57c969f30e6f3b8b429890f976bf;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/core/corebufferviewconfig.cpp b/src/core/corebufferviewconfig.cpp index 5f5a1b46..dff072de 100644 --- a/src/core/corebufferviewconfig.cpp +++ b/src/core/corebufferviewconfig.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2014 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,19 +15,21 @@ * 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 "corebufferviewconfig.h" +INIT_SYNCABLE_OBJECT(CoreBufferViewConfig) CoreBufferViewConfig::CoreBufferViewConfig(int bufferViewId, QObject *parent) - : BufferViewConfig(bufferViewId, parent) + : BufferViewConfig(bufferViewId, parent) { - setAllowClientUpdates(true); + setAllowClientUpdates(true); } + CoreBufferViewConfig::CoreBufferViewConfig(int bufferViewId, const QVariantMap &properties, QObject *parent) - : BufferViewConfig(bufferViewId, properties, parent) + : BufferViewConfig(bufferViewId, properties, parent) { - setAllowClientUpdates(true); + setAllowClientUpdates(true); }