summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/outdev2.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-06-06 13:12:03 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-06-06 13:12:03 +0000
commit135e6988c99e5995c6059caa229a372f9b56964e (patch)
treea45fcb625ff953db5f81c09486dde5078830348d /vcl/source/gdi/outdev2.cxx
parentdaef9d13a7eae7e9fccfe0a690a08ea5a3105acd (diff)
INTEGRATION: CWS ka009 (1.30.36); FILE MERGED
2007/01/04 18:00:12 ka 1.30.36.3: RESYNC: (1.31-1.33); FILE MERGED 2006/10/13 16:28:28 ka 1.30.36.2: RESYNC: (1.30-1.31); FILE MERGED 2006/07/12 22:03:52 ka 1.30.36.1: #i66680#: added patch for optimized ImageList handling
Diffstat (limited to 'vcl/source/gdi/outdev2.cxx')
-rw-r--r--vcl/source/gdi/outdev2.cxx18
1 files changed, 2 insertions, 16 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx
index d9aa894d192f..b094218c762e 100644
--- a/vcl/source/gdi/outdev2.cxx
+++ b/vcl/source/gdi/outdev2.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: outdev2.cxx,v $
*
- * $Revision: 1.34 $
+ * $Revision: 1.35 $
*
- * last change: $Author: rt $ $Date: 2007-04-26 10:37:15 $
+ * last change: $Author: ihi $ $Date: 2007-06-06 14:12:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1234,13 +1234,6 @@ void OutputDevice::DrawImage( const Point& rPos, const Image& rImage, USHORT nSt
}
break;
- case IMAGETYPE_IMAGEREF:
- {
- ImplImageRefData* pData = static_cast< ImplImageRefData* >( rImage.mpImplData->mpData );
- pData->mpImplData->mpImageBitmap->Draw( pData->mnIndex, this, rPos, nStyle );
- }
- break;
-
default:
break;
}
@@ -1277,13 +1270,6 @@ void OutputDevice::DrawImage( const Point& rPos, const Size& rSize,
}
break;
- case IMAGETYPE_IMAGEREF:
- {
- ImplImageRefData* pData = static_cast< ImplImageRefData* >( rImage.mpImplData->mpData );
- pData->mpImplData->mpImageBitmap->Draw( pData->mnIndex, this, rPos, nStyle, &rSize );
- }
- break;
-
default:
break;
}