diff options
-rw-r--r-- | vcl/inc/vcl/window.hxx | 4 | ||||
-rw-r--r-- | vcl/source/window/window2.cxx | 8 |
2 files changed, 1 insertions, 11 deletions
diff --git a/vcl/inc/vcl/window.hxx b/vcl/inc/vcl/window.hxx index 527d93b7951b..172e099a236d 100644 --- a/vcl/inc/vcl/window.hxx +++ b/vcl/inc/vcl/window.hxx @@ -965,9 +965,7 @@ public: void SetData( void* pNewData ); void* GetData() const; - // Should be merged in the next top level build !!! - Bitmap SnapShot( BOOL bBorder ) const; - Bitmap SnapShot() const; + Bitmap SnapShot( BOOL bBorder=TRUE ) const; void ShowFocus( const Rectangle& rRect ); void HideFocus(); diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 00f8d7b59705..191960abd3bf 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -342,14 +342,6 @@ Bitmap Window::SnapShot( BOOL bBorder ) const // ----------------------------------------------------------------------- -Bitmap Window::SnapShot() const -{ - // Should be merged in the next top level build !!! - return SnapShot( TRUE ); -} - -// ----------------------------------------------------------------------- - void Window::ShowFocus( const Rectangle& rRect ) { DBG_CHKTHIS( Window, ImplDbgCheckWindow ); |