summaryrefslogtreecommitdiffstats
path: root/languages/cpp/cppimplementationwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/cppimplementationwidget.cpp')
-rw-r--r--languages/cpp/cppimplementationwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/cppimplementationwidget.cpp b/languages/cpp/cppimplementationwidget.cpp
index 5fc00da3..35069349 100644
--- a/languages/cpp/cppimplementationwidget.cpp
+++ b/languages/cpp/cppimplementationwidget.cpp
@@ -31,12 +31,12 @@
#include <tdelistview.h>
#include <klineedit.h>
-#include <tdevlanguagesupport.h>
-#include <tdevproject.h>
+#include <kdevlanguagesupport.h>
+#include <kdevproject.h>
#include <domutil.h>
#include <filetemplate.h>
-CppImplementationWidget::CppImplementationWidget( TDevLanguageSupport *part,
+CppImplementationWidget::CppImplementationWidget( KDevLanguageSupport *part,
TQWidget *parent, const char *name, bool modal )
: ImplementationWidget( part, parent, name, modal )
{}
@@ -45,7 +45,7 @@ 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_cpp = "#include \"$CLASSINCLUDE$\"\n\n$CLASSNAME$::$CLASSNAME$(TQWidget *parent, const char *name)\n :$BASECLASSNAME$(parent, name)\n{\n}\n";
- if ( m_part->project() ->options() == TDevProject::UsesAutotoolsBuildSystem )
+ if ( m_part->project() ->options() == KDevProject::UsesAutotoolsBuildSystem )
template_cpp += "\n#include \"$MOCINCLUDE$\"\n";
TQFileInfo formInfo( m_formName );