summaryrefslogtreecommitdiffstats
path: root/languages/cpp/cppnewclassdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/cppnewclassdlg.cpp')
-rw-r--r--languages/cpp/cppnewclassdlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/cppnewclassdlg.cpp b/languages/cpp/cppnewclassdlg.cpp
index aa931991..e08188b2 100644
--- a/languages/cpp/cppnewclassdlg.cpp
+++ b/languages/cpp/cppnewclassdlg.cpp
@@ -1371,7 +1371,7 @@ bool CppNewClassDialog::ClassGenerator::generate()
if ( TQFileInfo( headerPath ).exists() || TQFileInfo( implementationPath ).exists() )
{
- KMessageBox::error( &dlg, i18n( "KDevelop is not able to add classes "
+ KMessageBox::error( &dlg, i18n( "TDevelop is not able to add classes "
"to existing header or implementation files." ) );
return false;
}
@@ -1827,7 +1827,7 @@ void CppNewClassDialog::ClassGenerator::gen_implementation()
if ( dlg.gen_config->reformat_box->isChecked() )
{
- KDevSourceFormatter * fmt = dlg.m_part->extension<KDevSourceFormatter>( "KDevelop/SourceFormatter" );
+ KDevSourceFormatter * fmt = dlg.m_part->extension<KDevSourceFormatter>( "TDevelop/SourceFormatter" );
if ( fmt )
classImpl = fmt->formatSource( classImpl );
}
@@ -2053,7 +2053,7 @@ void CppNewClassDialog::ClassGenerator::gen_interface()
if ( dlg.gen_config->reformat_box->isChecked() )
{
- KDevSourceFormatter * fmt = dlg.m_part->extension<KDevSourceFormatter>( "KDevelop/SourceFormatter" );
+ KDevSourceFormatter * fmt = dlg.m_part->extension<KDevSourceFormatter>( "TDevelop/SourceFormatter" );
if ( fmt )
classIntf = fmt->formatSource( classIntf );
}