[Kst] extragear/graphics/kst/src/libkst

Eli Fidler eli at staikos.net
Tue Feb 6 01:37:21 CET 2007


SVN commit 630692 by fidler:

fix const


 M  +2 -2      kstobject.h  


--- trunk/extragear/graphics/kst/src/libkst/kstobject.h #630691:630692
@@ -160,11 +160,11 @@
       return KstObjectTag(t, l);
     }
 
-    bool operator==(const KstObjectTag& tag) {
+    bool operator==(const KstObjectTag& tag) const {
       return (_tag == tag._tag && _context == tag._context);
     }
 
-    bool operator!=(const KstObjectTag& tag) {
+    bool operator!=(const KstObjectTag& tag) const {
       return (_tag != tag._tag || _context != tag._context);
     }
 


More information about the Kst mailing list