diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /src/canvas/qcanvas.cpp | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/canvas/qcanvas.cpp')
-rw-r--r-- | src/canvas/qcanvas.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/canvas/qcanvas.cpp b/src/canvas/qcanvas.cpp index e947ccfe4..88c0c7960 100644 --- a/src/canvas/qcanvas.cpp +++ b/src/canvas/qcanvas.cpp @@ -989,7 +989,7 @@ void TQCanvas::setAdvancePeriod(int ms) if ( update_timer ) delete update_timer; update_timer = new TQTimer(this); - connect(update_timer,SIGNAL(timeout()),this,SLOT(advance())); + connect(update_timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(advance())); update_timer->start(ms); } } @@ -1010,7 +1010,7 @@ void TQCanvas::setUpdatePeriod(int ms) if ( update_timer ) delete update_timer; update_timer = new TQTimer(this); - connect(update_timer,SIGNAL(timeout()),this,SLOT(update())); + connect(update_timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(update())); update_timer->start(ms); } } @@ -3535,7 +3535,7 @@ TQCanvasView::TQCanvasView(TQWidget* parent, const char* name, WFlags f) : d = new TQCanvasViewData; viewing = 0; setCanvas(0); - connect(this,SIGNAL(contentsMoving(int,int)),this,SLOT(cMoving(int,int))); + connect(this,TQ_SIGNAL(contentsMoving(int,int)),this,TQ_SLOT(cMoving(int,int))); } /*! @@ -3551,7 +3551,7 @@ TQCanvasView::TQCanvasView(TQCanvas* canvas, TQWidget* parent, const char* name, viewing = 0; setCanvas(canvas); - connect(this,SIGNAL(contentsMoving(int,int)),this,SLOT(cMoving(int,int))); + connect(this,TQ_SIGNAL(contentsMoving(int,int)),this,TQ_SLOT(cMoving(int,int))); } /*! @@ -3584,7 +3584,7 @@ void TQCanvasView::setCanvas(TQCanvas* canvas) } viewing=canvas; if (viewing) { - connect(viewing,SIGNAL(resized()), this, SLOT(updateContentsSize())); + connect(viewing,TQ_SIGNAL(resized()), this, TQ_SLOT(updateContentsSize())); viewing->addView(this); } if ( d ) // called by d'tor |