diff options
author | Michele Calgaro <[email protected]> | 2023-07-11 21:34:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-12 17:57:17 +0900 |
commit | fcc14dce86af147d34c708c29eedf8df05b99a86 (patch) | |
tree | 24ce7009298a3e238b0fd9087e5b80b946dca21f | |
parent | 321a6c8431f69b7fe7d3858fac8031da13dcf0eb (diff) | |
download | k9copy-fcc14dce86af147d34c708c29eedf8df05b99a86.tar.gz k9copy-fcc14dce86af147d34c708c29eedf8df05b99a86.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 415e188c1fd971167396a1da80d5661bb28aea03)
-rw-r--r-- | src/k9mencodercmdgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k9mencodercmdgen.cpp b/src/k9mencodercmdgen.cpp index 656b00d..7961b11 100644 --- a/src/k9mencodercmdgen.cpp +++ b/src/k9mencodercmdgen.cpp @@ -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(); |