summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-01-25 10:40:38 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-01-25 10:40:38 +0000
commit7114ac062430e8216d0f495aa28e2d8495fb5133 (patch)
tree74646284debde5f2d0c889d85f48d0185f2bacf0 /vcl/unx
parent664056e28aeafa9bf5f4b122a18b2629ad961a60 (diff)
INTEGRATION: CWS vcl50 (1.6.132); FILE MERGED
2005/12/22 16:06:18 pl 1.6.132.1: #i59255# sync on object window since out of process usage of window id could be concurrent
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/gtk/window/gtkobject.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/vcl/unx/gtk/window/gtkobject.cxx b/vcl/unx/gtk/window/gtkobject.cxx
index 8d5d4e4e639d..bebba3f3f585 100644
--- a/vcl/unx/gtk/window/gtkobject.cxx
+++ b/vcl/unx/gtk/window/gtkobject.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: gtkobject.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 12:38:09 $
+ * last change: $Author: hr $ $Date: 2006-01-25 11:40:38 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -76,6 +76,9 @@ GtkSalObject::GtkSalObject( GtkSalFrame* pParent )
g_signal_connect( G_OBJECT(m_pSocket), "focus-in-event", G_CALLBACK(signalFocus), this );
g_signal_connect( G_OBJECT(m_pSocket), "focus-out-event", G_CALLBACK(signalFocus), this );
g_signal_connect( G_OBJECT(m_pSocket), "destroy", G_CALLBACK(signalDestroy), this );
+
+ // #i59255# necessary due to sync effects with java child windows
+ pParent->Sync();
}
}