summaryrefslogtreecommitdiffstats
path: root/filesharing/advanced/kcm_sambaconf/dictmanager.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 17:34:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 09:59:16 +0900
commit40393e30bb743346b6b40bf130da35419c12ebdc (patch)
tree9330d82486c7b3125b8275914565b324f9af523e /filesharing/advanced/kcm_sambaconf/dictmanager.cpp
parent05594058244ba6a1866d5758ae412fb5afd6d727 (diff)
downloadtdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.tar.gz
tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
Diffstat (limited to 'filesharing/advanced/kcm_sambaconf/dictmanager.cpp')
-rw-r--r--filesharing/advanced/kcm_sambaconf/dictmanager.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/filesharing/advanced/kcm_sambaconf/dictmanager.cpp b/filesharing/advanced/kcm_sambaconf/dictmanager.cpp
index 099e29ea..bd82714f 100644
--- a/filesharing/advanced/kcm_sambaconf/dictmanager.cpp
+++ b/filesharing/advanced/kcm_sambaconf/dictmanager.cpp
@@ -64,7 +64,7 @@ void DictManager::handleUnsupportedWidget(const TQString & s, TQWidget* w) {
void DictManager::add(const TQString & key, TQLineEdit* lineEdit) {
if (_share->optionSupported(key)) {
lineEditDict.insert(key,lineEdit);
- connect(lineEdit, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(changedSlot()));
+ connect(lineEdit, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(changedSlot()));
} else
handleUnsupportedWidget(key,lineEdit);
}
@@ -72,7 +72,7 @@ void DictManager::add(const TQString & key, TQLineEdit* lineEdit) {
void DictManager::add(const TQString & key, TQCheckBox* checkBox){
if (_share->optionSupported(key)) {
checkBoxDict.insert(key,checkBox);
- connect(checkBox, TQT_SIGNAL(clicked()), this, TQT_SLOT(changedSlot()));
+ connect(checkBox, TQ_SIGNAL(clicked()), this, TQ_SLOT(changedSlot()));
} else
handleUnsupportedWidget(key,checkBox);
}
@@ -80,7 +80,7 @@ void DictManager::add(const TQString & key, TQCheckBox* checkBox){
void DictManager::add(const TQString & key, KURLRequester* urlRq){
if (_share->optionSupported(key)) {
urlRequesterDict.insert(key,urlRq);
- connect(urlRq, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(changedSlot()));
+ connect(urlRq, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(changedSlot()));
} else
handleUnsupportedWidget(key,urlRq);
}
@@ -88,7 +88,7 @@ void DictManager::add(const TQString & key, KURLRequester* urlRq){
void DictManager::add(const TQString & key, TQSpinBox* spinBox){
if (_share->optionSupported(key)) {
spinBoxDict.insert(key,spinBox);
- connect(spinBox, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(changedSlot()));
+ connect(spinBox, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(changedSlot()));
} else
handleUnsupportedWidget(key,spinBox);
}
@@ -97,7 +97,7 @@ void DictManager::add(const TQString & key, TQComboBox* comboBox, TQStringList*
if (_share->optionSupported(key)) {
comboBoxDict.insert(key,comboBox);
comboBoxValuesDict.insert(key,values);
- connect(comboBox, TQT_SIGNAL(activated(int)), this, TQT_SLOT(changedSlot()));
+ connect(comboBox, TQ_SIGNAL(activated(int)), this, TQ_SLOT(changedSlot()));
} else
handleUnsupportedWidget(key,comboBox);
}