| 792 | } |
| 793 | |
| 794 | void UIBuildSettings::refreshTab() { |
| 795 | if ( !mTab ) |
| 796 | return; |
| 797 | mTab->setText( |
| 798 | String::format( ( i18n( "build_settings", "Build Settings" ) + ": %s" ).toUtf8().c_str(), |
| 799 | mBuild.mName.c_str() ) ); |
| 800 | std::string hashName = String::toString( String::hash( mIsNew ? "new_name" : mBuild.mName ) ); |
| 801 | mTab->setId( "build_settings_" + hashName ); |
| 802 | } |
| 803 | |
| 804 | void UIBuildSettings::bindTable( const std::string& name, const std::string& key, |
| 805 | ProjectBuildKeyVal& data ) { |