Finally! All *Id types are now first-class types rather than tpyedefs.
[quassel.git] / src / common / bufferinfo.cpp
index 74cf492..e36defc 100644 (file)
@@ -71,6 +71,6 @@ QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo) {
 }
 
 uint qHash(const BufferInfo &bufferid) {
-  return qHash(bufferid._id);
+  return qHash(bufferid._id.toInt());
 }