summaryrefslogtreecommitdiffstats
path: root/tools/designer/designer/project.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/designer/project.cpp')
-rw-r--r--tools/designer/designer/project.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/designer/designer/project.cpp b/tools/designer/designer/project.cpp
index aadadc82..02899830 100644
--- a/tools/designer/designer/project.cpp
+++ b/tools/designer/designer/project.cpp
@@ -1351,9 +1351,9 @@ void Project::addObject( TQObject *o )
if ( MainWindow::self ) {
TQApplication::sendPostedEvents( MainWindow::self->qWorkspace(), TQEvent::ChildInserted );
connect( fw,
- SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ),
+ TQ_SIGNAL( undoRedoChanged( bool, bool, const TQString &, const TQString & ) ),
MainWindow::self,
- SLOT( updateUndoRedo( bool, bool, const TQString &, const TQString & ) )
+ TQ_SLOT( updateUndoRedo( bool, bool, const TQString &, const TQString & ) )
);
}
if ( fw->parentWidget() ) {
@@ -1527,9 +1527,9 @@ void Project::designerCreated()
if ( !fw || fw->mainWindow() )
continue;
fw->setMainWindow( MainWindow::self );
- connect( fw, SIGNAL( undoRedoChanged( bool, bool, const TQString &,
+ connect( fw, TQ_SIGNAL( undoRedoChanged( bool, bool, const TQString &,
const TQString & ) ),
- MainWindow::self, SLOT( updateUndoRedo( bool, bool,
+ MainWindow::self, TQ_SLOT( updateUndoRedo( bool, bool,
const TQString &, const TQString & ) ) );
fw->reparent( MainWindow::self->qWorkspace(), TQPoint( 0, 0 ), FALSE );
TQApplication::sendPostedEvents( MainWindow::self->qWorkspace(),