summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/window
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-24 18:11:31 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-25 15:13:06 +0200
commit2804ecc0fe40f8317050043b169396845b1b520d (patch)
treed6cb6b9b17d1cc9bab54bda44012789870f9e891 /vcl/unx/generic/window
parent14ff4c2ca033f9d00a613eb28b65a3e16891c8f3 (diff)
Remove vendor specific properties handling.
This needs some testing on other platforms! About SAL_PROPERTIES in OOo Environment documentation: "If set contains a bitfield activating various bug Xserver bug workarounds. Not very useful nowadays."
Diffstat (limited to 'vcl/unx/generic/window')
-rw-r--r--vcl/unx/generic/window/salframe.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/vcl/unx/generic/window/salframe.cxx b/vcl/unx/generic/window/salframe.cxx
index 98d6c367a0e0..8aba94d67a7f 100644
--- a/vcl/unx/generic/window/salframe.cxx
+++ b/vcl/unx/generic/window/salframe.cxx
@@ -4273,28 +4273,6 @@ long X11SalFrame::Dispatch( XEvent *pEvent )
if ( mpInputContext != NULL )
mpInputContext->Map( this );
CallCallback( SALEVENT_RESIZE, NULL );
- if( pDisplay_->GetServerVendor() == vendor_hummingbird )
- {
- /*
- * With Exceed sometimes there does not seem to be
- * an Expose after the MapNotify.
- * so start a delayed paint here
- */
- maPaintRegion.Union( Rectangle( Point( 0, 0 ), Size( maGeometry.nWidth, maGeometry.nHeight ) ) );
- XEvent aEvent;
- aEvent.xexpose.type = Expose;
- aEvent.xexpose.display = pDisplay_->GetDisplay();
- aEvent.xexpose.x = 0;
- aEvent.xexpose.y = 0;
- aEvent.xexpose.width = maGeometry.nWidth;
- aEvent.xexpose.height = maGeometry.nHeight;
- aEvent.xexpose.count = 0;
- XSendEvent( pDisplay_->GetDisplay(),
- GetWindow(),
- True,
- ExposureMask,
- &aEvent );
- }
bool bSetFocus = m_bSetFocusOnMap;
/* another workaround for sawfish: if a transient window for the same parent is shown