summaryrefslogtreecommitdiffstats
path: root/kalzium/src/elementdataviewer.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:49:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-19 10:25:42 +0900
commit69e4de2f4cee257151ca13b207dc677b2d958fed (patch)
tree01cb14d87074092f48260fe4db758dcb89917d98 /kalzium/src/elementdataviewer.cpp
parent0d9cc39b25fa93369504fbbf3ea91f01fb376aab (diff)
downloadtdeedu-69e4de2f4cee257151ca13b207dc677b2d958fed.tar.gz
tdeedu-69e4de2f4cee257151ca13b207dc677b2d958fed.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kalzium/src/elementdataviewer.cpp')
-rw-r--r--kalzium/src/elementdataviewer.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kalzium/src/elementdataviewer.cpp b/kalzium/src/elementdataviewer.cpp
index edb897c8..ba679d00 100644
--- a/kalzium/src/elementdataviewer.cpp
+++ b/kalzium/src/elementdataviewer.cpp
@@ -69,15 +69,15 @@ ElementDataViewer::ElementDataViewer( TQWidget *parent, const char* name )
setButtonText( User1, i18n("&Plot") );
m_actionCollection = new TDEActionCollection(this);
- KStdAction::quit(this, TQT_SLOT(slotClose()), m_actionCollection);
+ KStdAction::quit(this, TQ_SLOT(slotClose()), m_actionCollection);
- connect ( m_pPlotSetupWidget->KCB_y, TQT_SIGNAL( activated(int) ),
- this, TQT_SLOT( drawPlot()) );
+ connect ( m_pPlotSetupWidget->KCB_y, TQ_SIGNAL( activated(int) ),
+ this, TQ_SLOT( drawPlot()) );
- connect ( m_pPlotSetupWidget->connectPoints, TQT_SIGNAL( toggled(bool) ),
- this, TQT_SLOT( drawPlot()) );
- connect ( m_pPlotSetupWidget->showNames, TQT_SIGNAL( toggled(bool) ),
- this, TQT_SLOT( drawPlot()) );
+ connect ( m_pPlotSetupWidget->connectPoints, TQ_SIGNAL( toggled(bool) ),
+ this, TQ_SLOT( drawPlot()) );
+ connect ( m_pPlotSetupWidget->showNames, TQ_SIGNAL( toggled(bool) ),
+ this, TQ_SLOT( drawPlot()) );
// Draw the plot so that the user doesn't have to press the "Plot"
// button to seee anything.