|
|
|
@ -482,7 +482,7 @@ const TQString & k9MencoderCmdGen::getCmd(const TQString &_root) {
|
|
|
|
|
sCmd2+=sTmp+sPrefix+isb->text().replace(",",".").stripWhiteSpace();
|
|
|
|
|
sTmp="";
|
|
|
|
|
} else if(aSType.value()=="string" && Sck->isChecked()) {
|
|
|
|
|
TQComboBox *cb=(TQComboBox*) this->child(aSWidget.value().latin1(),TQCOMBOBOX_OBJECT_NAME_STRING);
|
|
|
|
|
TQComboBox *cb=(TQComboBox*) this->child(aSWidget.value().latin1(),"TQComboBox");
|
|
|
|
|
if (!sCmd2.isEmpty() )
|
|
|
|
|
sCmd2 +=m_sepValues;
|
|
|
|
|
// sCmd2+= cb->text(cb->currentItem());
|
|
|
|
@ -511,7 +511,7 @@ const TQString & k9MencoderCmdGen::getCmd(const TQString &_root) {
|
|
|
|
|
sCmd +=m_sepOpt;
|
|
|
|
|
sCmd+= eOpt.attributeNode("name").value() + "=" + isb->text().replace(",",".");
|
|
|
|
|
} else if(aType.value()=="string") {
|
|
|
|
|
TQComboBox *cb=(TQComboBox*) this->child(aWidget.value().latin1(),TQCOMBOBOX_OBJECT_NAME_STRING);
|
|
|
|
|
TQComboBox *cb=(TQComboBox*) this->child(aWidget.value().latin1(),"TQComboBox");
|
|
|
|
|
if (!sCmd.isEmpty())
|
|
|
|
|
sCmd +=m_sepOpt;
|
|
|
|
|
sCmd+= eOpt.attributeNode("name").value() + "=" + cb->currentText();
|
|
|
|
|