diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2004-01-06 13:21:32 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2004-01-06 13:21:32 +0000 |
commit | 9c50fd33e72103d8d40bf1b215f02c17c6b77be8 (patch) | |
tree | 57555cf3f387ab38a5c5817249814798a2da09f2 /vcl/source/window/window2.cxx | |
parent | c0f9567e4b51b769bd9248af98d423f0497fcfb6 (diff) |
INTEGRATION: CWS vclcleanup02 (1.9.228); FILE MERGED
2003/12/17 16:06:07 mt 1.9.228.5: #i23061# header cleanup, remove #ifdef ???_CXX and #define ???_CXX, also removed .impl files and fixed soke windows compiler warnings
2003/12/11 13:35:26 mt 1.9.228.4: #i23061# VCL cleanup, removed Dummy members and old AccessNotify
2003/12/10 15:59:44 mt 1.9.228.3: #i23061# VCL cleanup, removed headers, methods and types...
2003/12/05 16:36:20 mt 1.9.228.2: RESYNC: (1.9-1.10); FILE MERGED
2003/12/05 13:28:53 mt 1.9.228.1: #i23061# Code cleanups, fixed gcc WAll warnings, removed unused variables and unused code
Diffstat (limited to 'vcl/source/window/window2.cxx')
-rw-r--r-- | vcl/source/window/window2.cxx | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 21f9cdd004c7..d6422f57a585 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: window2.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2003-12-01 13:41:43 $ + * last change: $Author: vg $ $Date: 2004-01-06 14:21:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,8 +59,6 @@ * ************************************************************************/ -#define _SV_WINDOW_CXX - #include <limits.h> #ifndef _SV_SVSYS_HXX #include <svsys.h> @@ -103,10 +101,7 @@ #ifndef _SV_OUTDEV_H #include <outdev.h> #endif -#ifndef _SV_ACCESS_HXX -#include <access.hxx> -#endif -#ifndef _POLY_HXX +#ifndef _TL_POLY_HXX #include <tools/poly.hxx> #endif #ifndef _SV_VIRDEV_HXX @@ -872,7 +867,6 @@ void Window::SaveBackground( const Point& rPos, const Size& rSize, { const Region aOldClip( rSaveDevice.GetClipRegion() ); const Point aPixOffset( rSaveDevice.LogicToPixel( rDestOff ) ); - const Point aPixTopLeft( aClip.GetBoundRect().TopLeft() ); const BOOL bMap = rSaveDevice.IsMapModeEnabled(); // move clip region to have the same distance to DestOffset @@ -1331,12 +1325,3 @@ void Window::ImplHandleScroll( ScrollBar* pHScrl, long nX, pVScrl->DoScroll( nNewPos ); } } - -// ----------------------------------------------------------------------- - -void Window::GetAccessObject( AccessObjectRef& rAcc ) const -{ - DBG_CHKTHIS( Window, ImplDbgCheckWindow ); - - rAcc = new AccessObject( (void*) this, ACCESS_TYPE_WND ); -} |