diff options
Diffstat (limited to 'kspread/kspread_canvas.cpp')
-rw-r--r-- | kspread/kspread_canvas.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kspread/kspread_canvas.cpp b/kspread/kspread_canvas.cpp index 1f52a955..c78cfea8 100644 --- a/kspread/kspread_canvas.cpp +++ b/kspread/kspread_canvas.cpp @@ -257,16 +257,16 @@ Canvas::Canvas (View *_view) d->prevSpokenCol = -1; d->scrollTimer = new TQTimer( this ); - connect (d->scrollTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( doAutoScroll() ) ); + connect (d->scrollTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( doAutoScroll() ) ); if( d->view) { - connect( d->view, TQT_SIGNAL( autoScroll( const TQPoint & )), this, TQT_SLOT( slotAutoScroll( const TQPoint &))); + connect( d->view, TQ_SIGNAL( autoScroll( const TQPoint & )), this, TQ_SLOT( slotAutoScroll( const TQPoint &))); } if (kospeaker) { - connect (kospeaker, TQT_SIGNAL(customSpeakWidget(TQWidget*, const TQPoint&, uint)), - this, TQT_SLOT(speakCell(TQWidget*, const TQPoint&, uint))); + connect (kospeaker, TQ_SIGNAL(customSpeakWidget(TQWidget*, const TQPoint&, uint)), + this, TQ_SLOT(speakCell(TQWidget*, const TQPoint&, uint))); } setFocus(); @@ -4647,7 +4647,7 @@ VBorder::VBorder( TQWidget *_parent, Canvas *_canvas, View *_view) m_bMousePressed = false; m_scrollTimer = new TQTimer( this ); - connect (m_scrollTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( doAutoScroll() ) ); + connect (m_scrollTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( doAutoScroll() ) ); } @@ -5203,7 +5203,7 @@ HBorder::HBorder( TQWidget *_parent, Canvas *_canvas,View *_view ) m_bMousePressed = false; m_scrollTimer = new TQTimer( this ); - connect( m_scrollTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( doAutoScroll() ) ); + connect( m_scrollTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( doAutoScroll() ) ); } |