Changeset 50
- Timestamp:
- 08/30/01 08:47:29 (7 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 modified
-
kwq/KWQObject.h (modified) (2 diffs)
-
kwq/qt/qobject.h (modified) (2 diffs)
-
src/kwq/qt/qobject.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/kwq/KWQObject.h
r49 r50 30 30 #include "qobjectdefs.h" 31 31 #include "qevent.h" 32 #include "qvariant.h" 32 33 33 34 // FIXME: should these macros be in "kwq.h" or other header file? 34 35 #define slots 35 #define SLOT(x) x36 #define SLOT(x) "x" 36 37 #define signals protected 37 #define SIGNAL(x) x38 #define SIGNAL(x) "x" 38 39 #define emit 39 40 #define Q_OBJECT 40 //#define connect(arg1, arg2, arg3, arg4)41 41 42 42 class QObject { … … 45 45 const char *name() const; 46 46 virtual void setName(const char *); 47 QVariant property(const char *name) const; 47 48 bool inherits(const char *) const; 48 49 static bool connect(const QObject *, const char *, const QObject *, const -
trunk/WebCore/kwq/qt/qobject.h
r49 r50 30 30 #include "qobjectdefs.h" 31 31 #include "qevent.h" 32 #include "qvariant.h" 32 33 33 34 // FIXME: should these macros be in "kwq.h" or other header file? 34 35 #define slots 35 #define SLOT(x) x36 #define SLOT(x) "x" 36 37 #define signals protected 37 #define SIGNAL(x) x38 #define SIGNAL(x) "x" 38 39 #define emit 39 40 #define Q_OBJECT 40 //#define connect(arg1, arg2, arg3, arg4)41 41 42 42 class QObject { … … 45 45 const char *name() const; 46 46 virtual void setName(const char *); 47 QVariant property(const char *name) const; 47 48 bool inherits(const char *) const; 48 49 static bool connect(const QObject *, const char *, const QObject *, const -
trunk/WebCore/src/kwq/qt/qobject.h
r49 r50 30 30 #include "qobjectdefs.h" 31 31 #include "qevent.h" 32 #include "qvariant.h" 32 33 33 34 // FIXME: should these macros be in "kwq.h" or other header file? 34 35 #define slots 35 #define SLOT(x) x36 #define SLOT(x) "x" 36 37 #define signals protected 37 #define SIGNAL(x) x38 #define SIGNAL(x) "x" 38 39 #define emit 39 40 #define Q_OBJECT 40 //#define connect(arg1, arg2, arg3, arg4)41 41 42 42 class QObject { … … 45 45 const char *name() const; 46 46 virtual void setName(const char *); 47 QVariant property(const char *name) const; 47 48 bool inherits(const char *) const; 48 49 static bool connect(const QObject *, const char *, const QObject *, const