diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:48:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:48:13 +0900 |
commit | 0075327cfd432d756fff5de46626067a3856948e (patch) | |
tree | 7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculateeditvariabledialog.cpp | |
parent | 8373cb43a7a73d1348c583c39d63c9e3aa0a4a42 (diff) | |
download | qalculate-tde-0075327cfd432d756fff5de46626067a3856948e.tar.gz qalculate-tde-0075327cfd432d756fff5de46626067a3856948e.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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&))); } |