[Kst] kdeextragear-2/kst/kst
George Staikos
staikos at kde.org
Tue Sep 21 18:23:28 CEST 2004
CVS commit by staikos:
fix indenting and remove unneeded typedef - happy recompile!
M +32 -32 kstobject.h 1.27
--- kdeextragear-2/kst/kst/kstobject.h #1.26:1.27
@@ -32,9 +32,9 @@ class KstObjectPrivate;
// BINARY COMPATIBILITY IS NOT YET GUARANTEED
class KstObject : public KstShared, public QObject, public KstRWLock {
-public:
+ public:
KstObject();
virtual ~KstObject();
- typedef enum {NO_CHANGE=0, UPDATE} UpdateType;
+ enum UpdateType { NO_CHANGE = 0, UPDATE };
virtual UpdateType update(int updateCounter = -1) = 0;
@@ -51,9 +51,9 @@ public:
int operator==(const QString&) const;
-protected:
+ protected:
virtual void virtual_hook(int id, void *data);
int _lastUpdateCounter;
-private:
+ private:
QString _tag;
KstObjectPrivate *d;
More information about the Kst
mailing list