diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:36:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-24 21:24:01 +0900 |
commit | 93816e0a2c4477711497263902fe5222483da892 (patch) | |
tree | 662803755443085144e615fae1678f2755eda8fd /developer-doc/phb/dialogs.docbook | |
parent | 7a469553db421dbc62a6eca20fd81fe6fc7bb01a (diff) | |
download | kmymoney-93816e0a2c4477711497263902fe5222483da892.tar.gz kmymoney-93816e0a2c4477711497263902fe5222483da892.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4a70f1720eb66ddeb89d4340e44c601e3613b837)
Diffstat (limited to 'developer-doc/phb/dialogs.docbook')
-rw-r--r-- | developer-doc/phb/dialogs.docbook | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/developer-doc/phb/dialogs.docbook b/developer-doc/phb/dialogs.docbook index 66f8d16..539c353 100644 --- a/developer-doc/phb/dialogs.docbook +++ b/developer-doc/phb/dialogs.docbook @@ -64,7 +64,7 @@ <para/> <programlisting> class <KN>Dlg : public <KN>DlgDecl { - Q_OBJECT + TQ_OBJECT public: <KN>Dlg(QWidget *parent = 0, const char *name = 0); ~<KN>Dlg(); @@ -74,7 +74,7 @@ <para/> <para>The include file will have been generated by the Qt UIC (User Interface Compiler) from the .ui file for the dialog, under control of the make process.</para> <para/> - <para>The Q_OBJECT macro (written without any punctuation) will cause the Qt MOC (Meta Object Compiler) to generate additional object code and files which are necessary to support the signal/slot functionality (among other things).</para> + <para>The TQ_OBJECT macro (written without any punctuation) will cause the Qt MOC (Meta Object Compiler) to generate additional object code and files which are necessary to support the signal/slot functionality (among other things).</para> <para/> <para>The class declaration must also include a </para> <para/> |