X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbufferinfo.h;h=0953a10f03716346d2b58dc15262cf3650731395;hp=9ca41609a858bea341985dbead1fd97a2805bc5a;hb=86831c8857f0a729580cee547e10c9621d50c780;hpb=946e79e0243dda74433016060f12abc65883f243 diff --git a/src/common/bufferinfo.h b/src/common/bufferinfo.h index 9ca41609..0953a10f 100644 --- a/src/common/bufferinfo.h +++ b/src/common/bufferinfo.h @@ -50,13 +50,14 @@ public: static BufferInfo fakeStatusBuffer(NetworkId networkId); inline bool isValid() const { return _bufferId != 0; } - inline BufferId bufferId() const { return _bufferId; } - inline NetworkId networkId() const { return _netid; } - inline Type type() const { return _type; } - inline uint groupId() const { return _groupId; } - QString bufferName() const; - + inline const BufferId &bufferId() const { return _bufferId; } + inline void setBufferId(BufferId id) { _bufferId = id; } + inline const NetworkId &networkId() const { return _netid; } + inline const Type &type() const { return _type; } + inline const uint &groupId() const { return _groupId; } void setGroupId(uint gid) { _groupId = gid; } + + QString bufferName() const; inline bool operator==(const BufferInfo &other) const { return _bufferId == other._bufferId; }