summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorPhilipp Lohmann <pl@openoffice.org>2001-02-21 16:46:15 +0000
committerPhilipp Lohmann <pl@openoffice.org>2001-02-21 16:46:15 +0000
commite7ce5c6aec8a956f8e14ae00772fceeb5631c4ec (patch)
tree4ba6dfcc5e03cd316f2414a8077ea62d5412daaf /vcl
parentaabf194b5f530ba3448938c1683f67b317fdd3f4 (diff)
removed some test code
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/source/window/salframe.cxx28
1 files changed, 2 insertions, 26 deletions
diff --git a/vcl/unx/source/window/salframe.cxx b/vcl/unx/source/window/salframe.cxx
index c3268bf695db..1d81481c5d5d 100644
--- a/vcl/unx/source/window/salframe.cxx
+++ b/vcl/unx/source/window/salframe.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: salframe.cxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: pl $ $Date: 2001-02-21 17:24:04 $
+ * last change: $Author: pl $ $Date: 2001-02-21 17:46:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -487,30 +487,6 @@ void SalFrameData::Init( USHORT nSalFrameStyle, SystemParentData* pParentData )
}
SetPosSize( Rectangle( Point( x, y ), Size( w, h ) ) );
}
- if( s_aFullScreenWindow != None )
- {
- Atom nAtom = XInternAtom( GetXDisplay(), "_MOTIF_WM_HINTS", True );
- if( nAtom )
- {
- struct _mwmhints {
- unsigned int flags, func, deco;
- int input_mode;
- unsigned int status;
- } mwm_del_hints;
-
- memset( &mwm_del_hints, 0, sizeof( mwm_del_hints ) );
- mwm_del_hints.flags = (1L << 1);
- mwm_del_hints.deco = 112;
- XChangeProperty( GetXDisplay(), GetShellWindow(),
- nAtom, XA_ATOM, 32,
- PropModeReplace,
- (unsigned char*)&mwm_del_hints, 5 );
- }
-#ifdef DEBUG
- else
- fprintf( stderr, "SalFrameData::Init: _MOTIF_WM_HINTS not supported\n" );
-#endif
- }
}
if( hShell_ )