diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:38:34 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:38:34 -0500 |
commit | ffc74f031874e3823f212e40a03cb9f25091cb5f (patch) | |
tree | 8fee0733f8a83b667665175fabc47269cb093a7c /languages/cpp/cppnewclassdlg.cpp | |
parent | 70a3c0d90bf27c502ec710042250d51e2eb8bd99 (diff) | |
download | tdevelop-ffc74f031874e3823f212e40a03cb9f25091cb5f.tar.gz tdevelop-ffc74f031874e3823f212e40a03cb9f25091cb5f.zip |
Fix inadvertent tqt changes.
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 e08188b2..8cd37938 100644 --- a/languages/cpp/cppnewclassdlg.cpp +++ b/languages/cpp/cppnewclassdlg.cpp @@ -1820,9 +1820,9 @@ void CppNewClassDialog::ClassGenerator::gen_implementation() if ( ( dlg.m_part->project() ) && ( childClass || qobject ) && ( dlg.m_part->project() ->options() & KDevProject::UsesAutotoolsBuildSystem ) ) { - TQString tqmoc = header; - tqmoc.replace( TQRegExp( "\\..*" ), ".tqmoc" ); - classImpl += "#include \"" + tqmoc + "\"\n"; + TQString moc = header; + moc.replace( TQRegExp( "\\..*" ), ".moc" ); + classImpl += "#include \"" + moc + "\"\n"; } if ( dlg.gen_config->reformat_box->isChecked() ) |