diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-02-07 22:50:28 +1100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-07 20:16:23 +0000 |
commit | b634aa656a74e1f8ebeaf8a9092829294c49171d (patch) | |
tree | b63a70c43d58fcc207f28ac71e42ac61619a73ec /vcl/source | |
parent | fd5e86090b2708ea318746b6610d7a143859f273 (diff) |
Remove commented code in OutputDevice::ReMirror
The following code was reimplemented in a cleaner fashion some time
ago. However, it was just commented out and never removed. There is
no need for it now, so removing. It's in the DVCS if it's really
needed :-)
Change-Id: Ia7d3c480ba70ccbd8dcf2808d9b712499c4cef4f
Reviewed-on: https://gerrit.libreoffice.org/7913
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index 026b4b9f7fd7..4d716b127e2d 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -536,23 +536,6 @@ void OutputDevice::ReMirror( Region &rRegion ) const rRegion = aMirroredRegion; -// long nX; -// long nY; -// long nWidth; -// long nHeight; -// ImplRegionInfo aInfo; -// sal_Bool bRegionRect; -// Region aMirroredRegion; -// -// bRegionRect = rRegion.ImplGetFirstRect( aInfo, nX, nY, nWidth, nHeight ); -// while ( bRegionRect ) -// { -// Rectangle aRect( Point(nX, nY), Size(nWidth, nHeight) ); -// ImplReMirror( aRect ); -// aMirroredRegion.Union( aRect ); -// bRegionRect = rRegion.ImplGetNextRect( aInfo, nX, nY, nWidth, nHeight ); -// } -// rRegion = aMirroredRegion; } SalGraphics* OutputDevice::ImplGetGraphics() const |