summaryrefslogtreecommitdiffstats
path: root/tools/designer/designer/formwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/designer/formwindow.cpp')
-rw-r--r--tools/designer/designer/formwindow.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/tools/designer/designer/formwindow.cpp b/tools/designer/designer/formwindow.cpp
index e529432a..9e02b2b1 100644
--- a/tools/designer/designer/formwindow.cpp
+++ b/tools/designer/designer/formwindow.cpp
@@ -173,29 +173,29 @@ void FormWindow::init()
setFocusPolicy( ClickFocus );
sizePreviewLabel = 0;
checkSelectionsTimer = new TQTimer( this, "checkSelectionsTimer" );
- connect( checkSelectionsTimer, SIGNAL( timeout() ),
- this, SLOT( invalidCheckedSelections() ) );
+ connect( checkSelectionsTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( invalidCheckedSelections() ) );
updatePropertiesTimer = new TQTimer( this );
- connect( updatePropertiesTimer, SIGNAL( timeout() ),
- this, SLOT( updatePropertiesTimerDone() ) );
+ connect( updatePropertiesTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( updatePropertiesTimerDone() ) );
showPropertiesTimer = new TQTimer( this );
- connect( showPropertiesTimer, SIGNAL( timeout() ),
- this, SLOT( showPropertiesTimerDone() ) );
+ connect( showPropertiesTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( showPropertiesTimerDone() ) );
selectionChangedTimer = new TQTimer( this );
- connect( selectionChangedTimer, SIGNAL( timeout() ),
- this, SLOT( selectionChangedTimerDone() ) );
+ connect( selectionChangedTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( selectionChangedTimerDone() ) );
windowsRepaintWorkaroundTimer = new TQTimer( this );
- connect( windowsRepaintWorkaroundTimer, SIGNAL( timeout() ),
- this, SLOT( windowsRepaintWorkaroundTimerTimeout() ) );
+ connect( windowsRepaintWorkaroundTimer, TQ_SIGNAL( timeout() ),
+ this, TQ_SLOT( windowsRepaintWorkaroundTimerTimeout() ) );
insertParent = 0;
- connect( &commands, SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ),
- this, SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ) );
+ connect( &commands, TQ_SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ),
+ this, TQ_SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ) );
propShowBlocked = FALSE;
setIcon( TQPixmap::fromMimeSource( "designer_form.png" ) );
- connect( &commands, SIGNAL( modificationChanged( bool ) ),
- this, SLOT( modificationChanged( bool ) ) );
+ connect( &commands, TQ_SIGNAL( modificationChanged( bool ) ),
+ this, TQ_SLOT( modificationChanged( bool ) ) );
buffer = 0;
TQWidget *w = WidgetFactory::create( WidgetDatabase::idFromClassName( "TQFrame" ), this );
@@ -2221,7 +2221,7 @@ void FormWindow::editConnections()
ConnectionDialog dlg( mainwindow );
mainWindow()->statusBar()->message( tr( "Edit connections...") );
dlg.addConnection( startWidget, endWidget, TQString::null, TQString::null );
- TQTimer::singleShot( 0, &dlg, SLOT(ensureConnectionVisible()) );
+ TQTimer::singleShot( 0, &dlg, TQ_SLOT(ensureConnectionVisible()) );
dlg.exec();
}
@@ -2752,7 +2752,7 @@ void FormWindow::setFormFile( FormFile *f )
{
ff = f;
if ( ff )
- connect( this, SIGNAL( modificationChanged(bool, const TQString&) ), ff, SLOT( formWindowChangedSomehow() ) );
+ connect( this, TQ_SIGNAL( modificationChanged(bool, const TQString&) ), ff, TQ_SLOT( formWindowChangedSomehow() ) );
}
bool FormWindow::canBeBuddy( const TQWidget *w ) const