summaryrefslogtreecommitdiffstats
path: root/src/qalculateperiodictabledialog.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/qalculateperiodictabledialog.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/qalculateperiodictabledialog.cpp')
-rw-r--r--src/qalculateperiodictabledialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qalculateperiodictabledialog.cpp b/src/qalculateperiodictabledialog.cpp
index 914b97b..1583bf3 100644
--- a/src/qalculateperiodictabledialog.cpp
+++ b/src/qalculateperiodictabledialog.cpp
@@ -180,7 +180,7 @@ QalculatePeriodicTableDialog::QalculatePeriodicTableDialog(TQWidget *parent, con
tip += weight;
}
TQToolTip::add(e_button, tip);
- TQObject::connect(e_button, SIGNAL(clickedWithData(void*)), this, SLOT(showElementInfo(void*)));
+ TQObject::connect(e_button, TQ_SIGNAL(clickedWithData(void*)), this, TQ_SLOT(showElementInfo(void*)));
}
}
@@ -249,7 +249,7 @@ QalculateElementInfoDialog::QalculateElementInfoDialog(DataObject *element, TQWi
new TQLabel(str, grid);
new KActiveLabel(sval, grid);
button = new QalculateButtonWithData((void*) dp, TQIconSet(SmallIcon("edit-paste")), "", grid);
- TQObject::connect(button, SIGNAL(clickedWithData(void*)), SLOT(insertElementData(void*)));
+ TQObject::connect(button, TQ_SIGNAL(clickedWithData(void*)), TQ_SLOT(insertElementData(void*)));
}
}
dp = ds->getNextProperty(&it);