diff options
Diffstat (limited to 'kugar/kudesigner_lib/view.cpp')
| -rw-r--r-- | kugar/kudesigner_lib/view.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/kugar/kudesigner_lib/view.cpp b/kugar/kudesigner_lib/view.cpp index dc4af2627..ff7c249dc 100644 --- a/kugar/kudesigner_lib/view.cpp +++ b/kugar/kudesigner_lib/view.cpp @@ -104,7 +104,7 @@ View::View( Canvas *canvas, TQWidget *parent, const char *name, WFlags f ) :      selectionRect = new SelectionRect( 0, 0, 0, 0, canvas ); -    connect( m_canvas, TQT_SIGNAL( itemSelected() ), this, TQT_SLOT( selectItem() ) ); +    connect( m_canvas, TQ_SIGNAL( itemSelected() ), this, TQ_SLOT( selectItem() ) );  }  void View::deleteItem( TQCanvasItemList &l ) @@ -825,7 +825,7 @@ void View::setCanvas( Canvas *canvas )      TQCanvasView::setCanvas( ( TQCanvas* ) canvas );      m_canvas = canvas;      selectionRect = new SelectionRect( 0, 0, 0, 0, m_canvas ); -    connect( m_canvas, TQT_SIGNAL( itemSelected() ), this, TQT_SLOT( selectItem() ) ); +    connect( m_canvas, TQ_SIGNAL( itemSelected() ), this, TQ_SLOT( selectItem() ) );      clearRequest();  } | 
