summaryrefslogtreecommitdiffstats
path: root/src/qalculateeditnamesdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:48:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:57:16 +0900
commit9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed (patch)
treed9b923a151fdb07620f8e056bfaf044c87a08667 /src/qalculateeditnamesdialog.cpp
parentd88c548dcfcafedab261a20eec043da0cf4e88e3 (diff)
downloadqalculate-tde-9fe1e65b.tar.gz
qalculate-tde-9fe1e65b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0075327cfd432d756fff5de46626067a3856948e)
Diffstat (limited to 'src/qalculateeditnamesdialog.cpp')
-rw-r--r--src/qalculateeditnamesdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qalculateeditnamesdialog.cpp b/src/qalculateeditnamesdialog.cpp
index 4b3d9df..a69ac46 100644
--- a/src/qalculateeditnamesdialog.cpp
+++ b/src/qalculateeditnamesdialog.cpp
@@ -72,12 +72,12 @@ QalculateEditNamesDialog::QalculateEditNamesDialog(int item_type, TQWidget *pare
buttonClose->setDefault(true);
buttonLayout->addWidget(buttonClose);
- connect(namesView, SIGNAL(selectionChanged()), this, SLOT(nameSelectionChanged()));
- connect(buttonClose, SIGNAL(clicked()), this, SLOT(accept()));
- connect(newButton, SIGNAL(clicked()), this, SLOT(newName()));
- connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteName()));
- connect(namesView, SIGNAL(clicked(TQListViewItem*, const TQPoint&, int)), this, SLOT(itemClicked(TQListViewItem*, const TQPoint&, int)));
- connect(namesView->renameLineEdit(), SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&)));
+ connect(namesView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(nameSelectionChanged()));
+ connect(buttonClose, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept()));
+ connect(newButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newName()));
+ connect(deleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteName()));
+ connect(namesView, TQ_SIGNAL(clicked(TQListViewItem*, const TQPoint&, int)), this, TQ_SLOT(itemClicked(TQListViewItem*, const TQPoint&, int)));
+ connect(namesView->renameLineEdit(), TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&)));
}