diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-07-04 16:46:19 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-07-04 16:46:19 -0500 |
commit | 998ebd2e683e45140493910f76e692e96887b5d2 (patch) | |
tree | 4d75be7d82ab9ba5ebd7c95c5b64a265971183d2 /languages/cpp/cppnewclassdlg.cpp | |
parent | 9ba3adb356665bc27c3416c0b916efa89b366bde (diff) | |
download | tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.tar.gz tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.zip |
Fix help files, kdevelop->tdevelop branding, fix startup.
Diffstat (limited to 'languages/cpp/cppnewclassdlg.cpp')
-rw-r--r-- | languages/cpp/cppnewclassdlg.cpp | 6 |
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 ); } |