diff options
Diffstat (limited to 'buildtools/autotools/addservicedlg.cpp')
-rw-r--r-- | buildtools/autotools/addservicedlg.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/autotools/addservicedlg.cpp b/buildtools/autotools/addservicedlg.cpp index dde34053..a53b2551 100644 --- a/buildtools/autotools/addservicedlg.cpp +++ b/buildtools/autotools/addservicedlg.cpp @@ -32,8 +32,8 @@ AddServiceDialog::AddServiceDialog(AutoProjectWidget *widget, SubprojectItem *spitem, - TQWidget *parent, const char *name) - : AddServiceDialogBase(parent, name, true) + TQWidget *tqparent, const char *name) + : AddServiceDialogBase(tqparent, name, true) { filename_edit->setText(".desktop"); filename_edit->home(false); @@ -77,7 +77,7 @@ void AddServiceDialog::updateProperties() TQStringList stprops = type->propertyDefNames(); TQStringList::ConstIterator stit; for (stit = stprops.begin(); stit != stprops.end(); ++stit) - if (props.find(*stit) == props.end() && (*stit) != "Name" && (*stit) != "Comment" + if (props.tqfind(*stit) == props.end() && (*stit) != "Name" && (*stit) != "Comment" && (*stit) != "Icon") props.append(*stit); } @@ -136,7 +136,7 @@ void AddServiceDialog::propertyExecuted(TQListViewItem *item) TQString prop = item->text(0); TQString value = item->text(1); bool ok; - value = KInputDialog::getText(i18n("Enter Value"), i18n("Property %1:").arg(prop), value, &ok, this); + value = KInputDialog::getText(i18n("Enter Value"), i18n("Property %1:").tqarg(prop), value, &ok, this); if (!ok) return; |