X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fmessage.cpp;h=c867a7cbc2a9283178393723e766679035a970c2;hp=45517cff5ec69bb8e8c0d50322c96e6770972b12;hb=e06ce3bfa98752cb9e87586477dfaf31e7e1ab0a;hpb=dc0533961824e174efa6dae3ea4c2e25a5d5503a diff --git a/src/common/message.cpp b/src/common/message.cpp index 45517cff..c867a7cb 100644 --- a/src/common/message.cpp +++ b/src/common/message.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,10 +44,6 @@ Message::Message(const QDateTime &ts, const BufferInfo &bufferInfo, Type type, c { } -void Message::setFlags(Flags flags) { - _flags = flags; -} - QDataStream &operator<<(QDataStream &out, const Message &msg) { out << msg.msgId() << (quint32)msg.timestamp().toTime_t() << (quint32)msg.type() << (quint8)msg.flags() << msg.bufferInfo() << msg.sender().toUtf8() << msg.contents().toUtf8();