summaryrefslogtreecommitdiffstats
path: root/src/kernel/qwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qwidget.cpp')
-rw-r--r--src/kernel/qwidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/qwidget.cpp b/src/kernel/qwidget.cpp
index 4885346d..0e9c606a 100644
--- a/src/kernel/qwidget.cpp
+++ b/src/kernel/qwidget.cpp
@@ -3203,15 +3203,15 @@ void TQWidget::setFocusProxy( TQWidget * w )
createExtra();
if ( extra->focus_proxy ) {
- disconnect( extra->focus_proxy, SIGNAL(destroyed()),
- this, SLOT(focusProxyDestroyed()) );
+ disconnect( extra->focus_proxy, TQ_SIGNAL(destroyed()),
+ this, TQ_SLOT(focusProxyDestroyed()) );
extra->focus_proxy = 0;
}
if ( w ) {
setFocusPolicy( w->focusPolicy() );
- connect( w, SIGNAL(destroyed()),
- this, SLOT(focusProxyDestroyed()) );
+ connect( w, TQ_SIGNAL(destroyed()),
+ this, TQ_SLOT(focusProxyDestroyed()) );
}
extra->focus_proxy = w;
}
@@ -4338,7 +4338,7 @@ bool TQWidget::close( bool alsoDelete )
if ( !deleted && !isHidden() )
hide();
if ( checkLastWindowClosed
- && tqApp->receivers(SIGNAL(lastWindowClosed())) ) {
+ && tqApp->receivers(TQ_SIGNAL(lastWindowClosed())) ) {
/* if there is no non-withdrawn top level window left (except
the desktop, popups, or dialogs with parents), we emit the
lastWindowClosed signal */