summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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