From 53c180e71c2d6bc90bb777b4bd304d5f235040e3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 12 Jul 2023 11:38:31 +0900 Subject: Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro --- tdelirc/kcmlirc/addaction.cpp | 4 ++-- tdelirc/profiles/konqueror.profile.xml | 2 +- tdelirc/profiles/tdelauncher.profile.xml | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'tdelirc') diff --git a/tdelirc/kcmlirc/addaction.cpp b/tdelirc/kcmlirc/addaction.cpp index 8a87775..b43879b 100644 --- a/tdelirc/kcmlirc/addaction.cpp +++ b/tdelirc/kcmlirc/addaction.cpp @@ -274,7 +274,7 @@ void AddAction::updateParameter() { theValue->raiseWidget(1); theValueCheckBox->setChecked(theArguments[index].toBool()); } - else if(type.find(TQSTRINGLIST_OBJECT_NAME_STRING) != -1) + else if(type.find("TQStringList") != -1) { theValue->raiseWidget(4); TQStringList backup = theArguments[index].toStringList(); // backup needed because calling clear will kill what ever has been saved. @@ -313,7 +313,7 @@ void AddAction::slotParameterChanged() theArguments[index].asDouble() = theValueDoubleNumInput->value(); else if(type.find("bool") != -1) theArguments[index].asBool() = theValueCheckBox->isChecked(); - else if(type.find(TQSTRINGLIST_OBJECT_NAME_STRING) != -1) + else if(type.find("TQStringList") != -1) theArguments[index].asStringList() = theValueEditListBox->items(); else theArguments[index].asString() = theValueLineEdit->text(); diff --git a/tdelirc/profiles/konqueror.profile.xml b/tdelirc/profiles/konqueror.profile.xml index 0fdfdba..ab6ed8a 100644 --- a/tdelirc/profiles/konqueror.profile.xml +++ b/tdelirc/profiles/konqueror.profile.xml @@ -8,7 +8,7 @@ Create New Window Creates a new window and loads an arbitrary URL. - The URL to load in the window initially. + The URL to load in the window initially. Quit diff --git a/tdelirc/profiles/tdelauncher.profile.xml b/tdelirc/profiles/tdelauncher.profile.xml index 57eca31..88475f2 100644 --- a/tdelirc/profiles/tdelauncher.profile.xml +++ b/tdelirc/profiles/tdelauncher.profile.xml @@ -6,13 +6,13 @@ Execute Runs a program or script - The executable name and path of the program or script to run - Parameters for the program or script + The executable name and path of the program or script to run + Parameters for the program or script Execute and Wait Runs a program or script and waits for it to finish - The executable name and path of the program or script to run - Parameters for the program or script + The executable name and path of the program or script to run + Parameters for the program or script -- cgit v1.2.3