diff options
Diffstat (limited to 'lib/kofficeui/KoGuideLineDia.cpp')
| -rw-r--r-- | lib/kofficeui/KoGuideLineDia.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/lib/kofficeui/KoGuideLineDia.cpp b/lib/kofficeui/KoGuideLineDia.cpp index 740a71912..fc5e3f96d 100644 --- a/lib/kofficeui/KoGuideLineDia.cpp +++ b/lib/kofficeui/KoGuideLineDia.cpp @@ -63,7 +63,7 @@ KoGuideLineDia::KoGuideLineDia( TQWidget *parent, KoPoint &pos, KoRect &rect,      m_hButton = new TQRadioButton( i18n( "Horizontal" ), group );      m_vButton = new TQRadioButton( i18n( "Vertical" ), group ); -    connect( group, TQT_SIGNAL( clicked( int ) ), this, TQT_SLOT( slotOrientationChanged() ) ); +    connect( group, TQ_SIGNAL( clicked( int ) ), this, TQ_SLOT( slotOrientationChanged() ) );      m_vButton->setChecked( true );; @@ -73,7 +73,7 @@ KoGuideLineDia::KoGuideLineDia( TQWidget *parent, KoPoint &pos, KoRect &rect,      m_position->setFocus();      label->setBuddy( m_position ); -    connect( m_position, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotPositionChanged() ) ); +    connect( m_position, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotPositionChanged() ) );  } @@ -104,9 +104,9 @@ void KoGuideLineDia::slotOrientationChanged()              m_position->setMaxValue( TQMAX( 0.0, m_rect.bottom() ) );              if ( ! m_positionChanged )              { -                disconnect( m_position, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotPositionChanged() ) ); +                disconnect( m_position, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotPositionChanged() ) );                  m_position->changeValue( m_pos.y() ); -                connect( m_position, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotPositionChanged() ) ); +                connect( m_position, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotPositionChanged() ) );              }          }          else if ( m_vButton->isChecked() ) @@ -115,9 +115,9 @@ void KoGuideLineDia::slotOrientationChanged()              m_position->setMaxValue( TQMAX( 0.0, m_rect.right() ) );              if ( ! m_positionChanged )              { -                disconnect( m_position, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotPositionChanged() ) ); +                disconnect( m_position, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotPositionChanged() ) );                  m_position->changeValue( m_pos.x() ); -                connect( m_position, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( slotPositionChanged() ) ); +                connect( m_position, TQ_SIGNAL( valueChanged( double ) ), this, TQ_SLOT( slotPositionChanged() ) );              }          }      } | 
