summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 17:12:16 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 17:12:16 +0000
commitef39e8e4178a8f98cf5f154916ba0f03e4855206 (patch)
tree57c3262d323d27835cbefdf6db04860a026d7df7
parente7e4b0b68cf15e861bb8f0f7ee76156460cdf97d (diff)
downloadkoffice-ef39e8e4.tar.gz
koffice-ef39e8e4.zip
Fix missing Q_OBJECT macros
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kexi/kexidb/driver.h2
-rw-r--r--kexi/migration/keximigrate.h2
-rw-r--r--kexi/widget/tableview/kexidataawareobjectiface.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/kexi/kexidb/driver.h b/kexi/kexidb/driver.h
index c889d475c..7a8d51656 100644
--- a/kexi/kexidb/driver.h
+++ b/kexi/kexidb/driver.h
@@ -367,7 +367,7 @@ class KEXI_DB_EXPORT Driver : public TQObject, public KexiDB::Object
} //namespace KexiDB
/*! Driver's static version information, automatically impemented for KexiDB drivers.
- Put this into driver class declaration just like TQ_OBJECT macro. */
+ Put this into driver class declaration just like Q_OBJECT macro. */
#define KEXIDB_DRIVER \
public: \
virtual DatabaseVersionInfo version() const;
diff --git a/kexi/migration/keximigrate.h b/kexi/migration/keximigrate.h
index e618ed728..b897bd95b 100644
--- a/kexi/migration/keximigrate.h
+++ b/kexi/migration/keximigrate.h
@@ -305,7 +305,7 @@ class KEXIMIGR_EXPORT KexiMigrate : public TQObject, public KexiDB::Object
KGenericFactory<KexiMigration::class_name>( "keximigrate_" #internal_name ))
/*! Driver's static version information, automatically implemented for KexiDB drivers.
- Put this into migration driver class declaration just like TQ_OBJECT macro. */
+ Put this into migration driver class declaration just like Q_OBJECT macro. */
#define KEXIMIGRATION_DRIVER \
public: \
virtual int versionMajor() const; \
diff --git a/kexi/widget/tableview/kexidataawareobjectiface.h b/kexi/widget/tableview/kexidataawareobjectiface.h
index e6e9a3579..3ac196fb4 100644
--- a/kexi/widget/tableview/kexidataawareobjectiface.h
+++ b/kexi/widget/tableview/kexidataawareobjectiface.h
@@ -54,7 +54,7 @@ namespace KexiDB {
//! \brief The KexiDataAwareObjectInterface is an interface for record-based data object.
/** This interface is implemented by KexiTableView and KexiFormView
and used by KexiDataAwareView. If yu're implementing this interface,
- add KEXI_DATAAWAREOBJECTINTERFACE convenience macro just after TQ_OBJECT.
+ add KEXI_DATAAWAREOBJECTINTERFACE convenience macro just after Q_OBJECT.
You should add following code to your destructor so data is deleted:
\code