|
|
@ -1114,7 +1114,7 @@ TQStringList Uic::unique( const TQStringList& list )
|
|
|
|
TQString Uic::createObjectInstance( const TQString& objClass, const TQString& parent, const TQString& objName )
|
|
|
|
TQString Uic::createObjectInstance( const TQString& objClass, const TQString& parent, const TQString& objName )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if ( objClass.mid( 1 ) == "ComboBox" ) {
|
|
|
|
if (( objClass.mid( 1 ) == "ComboBox" ) || ( objClass.mid( 2 ) == "ComboBox" )) {
|
|
|
|
return objClass + "( FALSE, " + parent + ", \"" + objName + "\" )";
|
|
|
|
return objClass + "( FALSE, " + parent + ", \"" + objName + "\" )";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return objClass + "( " + parent + ", \"" + objName + "\" )";
|
|
|
|
return objClass + "( " + parent + ", \"" + objName + "\" )";
|
|
|
|