diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-01 16:42:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-01 16:42:03 +0900 |
commit | fb2c1f71e00b812e70477e64d9493fbfea403417 (patch) | |
tree | 6b8cd31f6a6bd4ef16819467c38d13747911bb32 | |
parent | 9c40420b261ea30555cabc299829028ee345b9e5 (diff) | |
download | tdevelop-fb2c1f71e00b812e70477e64d9493fbfea403417.tar.gz tdevelop-fb2c1f71e00b812e70477e64d9493fbfea403417.zip |
Addendum to previous commit (replace Q_OBJECT with TQ_OBJECT)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | languages/cpp/cppimplementationwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/cpp/cppimplementationwidget.cpp b/languages/cpp/cppimplementationwidget.cpp index 35069349..1307e3d8 100644 --- a/languages/cpp/cppimplementationwidget.cpp +++ b/languages/cpp/cppimplementationwidget.cpp @@ -43,7 +43,7 @@ CppImplementationWidget::CppImplementationWidget( KDevLanguageSupport *part, TQStringList CppImplementationWidget::createClassFiles() { - TQString template_h = "#ifndef $DEFTEXT$_H\n#define $DEFTEXT$_H\n\n#include \"$BASEINCLUDE$\"\n\nclass $CLASSNAME$: public $BASECLASSNAME$ {\nQ_OBJECT\n\npublic:\n $CLASSNAME$(TQWidget *parent = 0, const char *name = 0);\n};\n\n#endif\n"; + TQString template_h = "#ifndef $DEFTEXT$_H\n#define $DEFTEXT$_H\n\n#include \"$BASEINCLUDE$\"\n\nclass $CLASSNAME$: public $BASECLASSNAME$ {\nTQ_OBJECT\n\npublic:\n $CLASSNAME$(TQWidget *parent = 0, const char *name = 0);\n};\n\n#endif\n"; TQString template_cpp = "#include \"$CLASSINCLUDE$\"\n\n$CLASSNAME$::$CLASSNAME$(TQWidget *parent, const char *name)\n :$BASECLASSNAME$(parent, name)\n{\n}\n"; if ( m_part->project() ->options() == KDevProject::UsesAutotoolsBuildSystem ) template_cpp += "\n#include \"$MOCINCLUDE$\"\n"; |