summaryrefslogtreecommitdiffstats
path: root/src/__TODO/AboutDialogGraphicsView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/__TODO/AboutDialogGraphicsView.cpp')
-rw-r--r--src/__TODO/AboutDialogGraphicsView.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/__TODO/AboutDialogGraphicsView.cpp b/src/__TODO/AboutDialogGraphicsView.cpp
index b9b527b..1a6a7ea 100644
--- a/src/__TODO/AboutDialogGraphicsView.cpp
+++ b/src/__TODO/AboutDialogGraphicsView.cpp
@@ -74,7 +74,7 @@ AboutDialogGraphicsView::AboutDialogGraphicsView(AboutDialog *aboutDialog, TQWid
setCacheMode(TQGraphicsView::CacheBackground);
setViewportUpdateMode(TQGraphicsView::BoundingRectViewportUpdate);
- connect(_aboutDialog, SIGNAL(finished(int)), this, SLOT(hide()));
+ connect(_aboutDialog, TQ_SIGNAL(finished(int)), this, TQ_SLOT(hide()));
//setWindowOpacity(0.9);
@@ -86,7 +86,7 @@ AboutDialogGraphicsView::AboutDialogGraphicsView(AboutDialog *aboutDialog, TQWid
_timeLine->setFrameRange(270, 0);
//_timeLine->setUpdateInterval(10);
//_timeLine->setCurveShape(TQTimeLine::EaseInCurve);
- connect(_timeLine, SIGNAL(frameChanged(int)), this, SLOT(updateStep(int)));
+ connect(_timeLine, TQ_SIGNAL(frameChanged(int)), this, TQ_SLOT(updateStep(int)));
}
AboutDialogGraphicsView::~AboutDialogGraphicsView(void)
@@ -150,7 +150,7 @@ void AboutDialogGraphicsView::show()
//_aboutDialogAsSplashScreen->show();
TQGraphicsView::show();
- connect(_timeLine, SIGNAL(finished()), this, SLOT(showAboutDialog()));
+ connect(_timeLine, TQ_SIGNAL(finished()), this, TQ_SLOT(showAboutDialog()));
_timeLine->setDirection(TQTimeLine::Forward);
_timeLine->start();
}
@@ -176,7 +176,7 @@ void AboutDialogGraphicsView::updateStep(int step)
void AboutDialogGraphicsView::showAboutDialog()
{
//hide();
- disconnect(_timeLine, SIGNAL(finished()), this, SLOT(showAboutDialog()));
+ disconnect(_timeLine, TQ_SIGNAL(finished()), this, TQ_SLOT(showAboutDialog()));
_aboutDialog->move(int(_parentWindow->geometry().x() +
(_parentWindow->geometry().width() - _graphicsProxyWidget->geometry().width()) / 2),
_parentWindow->y() + _windowTitleBarWidth - _windowPosOffset);
@@ -204,7 +204,7 @@ void AboutDialogGraphicsView::hide()
//_aboutDialogAsSplashScreen->show();
TQGraphicsView::show();
- connect(_timeLine, SIGNAL(finished()), this, SLOT(hideReally()));
+ connect(_timeLine, TQ_SIGNAL(finished()), this, TQ_SLOT(hideReally()));
_timeLine->setDirection(TQTimeLine::Backward);
_timeLine->start();
}
@@ -214,7 +214,7 @@ void AboutDialogGraphicsView::hide()
*/
void AboutDialogGraphicsView::hideReally()
{
- disconnect(_timeLine, SIGNAL(finished()), this, SLOT(hideReally()));
+ disconnect(_timeLine, TQ_SIGNAL(finished()), this, TQ_SLOT(hideReally()));
TQGraphicsView::hide();
_parentWindow->activateWindow();
}