diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:48:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:57:16 +0900 |
commit | 9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed (patch) | |
tree | d9b923a151fdb07620f8e056bfaf044c87a08667 /src/qalculateeditvariabledialog.cpp | |
parent | d88c548dcfcafedab261a20eec043da0cf4e88e3 (diff) | |
download | qalculate-tde-9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed.tar.gz qalculate-tde-9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed.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/qalculateeditvariabledialog.cpp')
-rw-r--r-- | src/qalculateeditvariabledialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qalculateeditvariabledialog.cpp b/src/qalculateeditvariabledialog.cpp index 8475cdd..f9805a0 100644 --- a/src/qalculateeditvariabledialog.cpp +++ b/src/qalculateeditvariabledialog.cpp @@ -83,8 +83,8 @@ QalculateEditVariableDialog::QalculateEditVariableDialog(TQWidget *parent, const titleEdit = new KLineEdit(mainWidget()); grid->addWidget(titleEdit, 5, 1); - connect(namesButton, SIGNAL(clicked()), this, SLOT(editNames())); - connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&))); + connect(namesButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editNames())); + connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&))); } |