we now always have a transparent sizer grip

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2007-07-23 20:12:59 +00:00
parent 6287620649
commit ae9d03dd77

View File

@@ -53,13 +53,6 @@ bool wxDialog::Create( wxWindow *parent,
if ( !wxTopLevelWindow::Create( parent, id, title, pos, size, style, name ) ) if ( !wxTopLevelWindow::Create( parent, id, title, pos, size, style, name ) )
return false; return false;
#if TARGET_API_MAC_OSX
HIViewRef growBoxRef = 0 ;
OSStatus err = HIViewFindByID( HIViewGetRoot( (WindowRef)m_macWindow ), kHIViewWindowGrowBoxID, &growBoxRef );
if ( err == noErr && growBoxRef != 0 )
HIGrowBoxViewSetTransparent( growBoxRef, true ) ;
#endif
return true; return true;
} }