diff options
Diffstat (limited to 'tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h')
-rw-r--r-- | tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h b/tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h index 72aea91..9902c17 100644 --- a/tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h +++ b/tqtinterface/qt4/tools/designer/plugins/cppeditor/projectsettings.ui.h @@ -36,10 +36,10 @@ void CppProjectSettings::reInit( TQUnknownInterface *iface ) const TQString platforms[] = { "(all)", "win32", "unix", "mac", TQString() }; for ( int i = 0; platforms[ i ] != TQString(); ++i ) { - config.tqreplace( platforms[ i ], project->config( platforms[ i ] ) ); - libs.tqreplace( platforms[ i ], project->libs( platforms[ i ] ) ); - defines.tqreplace( platforms[ i ], project->defines( platforms[ i ] ) ); - includes.tqreplace( platforms[ i ], project->includePath( platforms[ i ] ) ); + config.replace( platforms[ i ], project->config( platforms[ i ] ) ); + libs.replace( platforms[ i ], project->libs( platforms[ i ] ) ); + defines.replace( platforms[ i ], project->defines( platforms[ i ] ) ); + includes.replace( platforms[ i ], project->includePath( platforms[ i ] ) ); } editConfig->setText( config[ "(all)" ] ); editLibs->setText( libs[ "(all)" ] ); @@ -67,22 +67,22 @@ void CppProjectSettings::save( TQUnknownInterface *iface ) void CppProjectSettings::configChanged( const TQString &str ) { - config.tqreplace( comboConfig->currentText(), str ); + config.replace( comboConfig->currentText(), str ); } void CppProjectSettings::libsChanged( const TQString &str ) { - libs.tqreplace( comboLibs->currentText(), str ); + libs.replace( comboLibs->currentText(), str ); } void CppProjectSettings::definesChanged( const TQString &str ) { - defines.tqreplace( comboDefines->currentText(), str ); + defines.replace( comboDefines->currentText(), str ); } void CppProjectSettings::includesChanged( const TQString &str ) { - includes.tqreplace( comboInclude->currentText(), str ); + includes.replace( comboInclude->currentText(), str ); } void CppProjectSettings::configPlatformChanged( const TQString &plat ) |