summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-01-19 11:40:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-01-19 13:24:28 +0000
commitf73e72fb33f111c2eda12aa359b96dad680e6848 (patch)
tree4471f76112aad3eb6b06015457ec02f7e7cb194a /include
parent8b5e8dfed7c7c3c6669062a3db04961fe5eb1855 (diff)
only use of clone is to copy, so do that
Change-Id: I75cfb96e4afd69fd0f6a6716ce4be282aa8d3b14
Diffstat (limited to 'include')
-rw-r--r--include/basebmp/bitmapdevice.hxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/basebmp/bitmapdevice.hxx b/include/basebmp/bitmapdevice.hxx
index a3b4bb0efe98..1ad089d1d6bd 100644
--- a/include/basebmp/bitmapdevice.hxx
+++ b/include/basebmp/bitmapdevice.hxx
@@ -161,13 +161,8 @@ BitmapDeviceSharedPtr BASEBMP_DLLPUBLIC createBitmapDevice( const basegfx::B2IVe
/** Function to clone a BitmapDevice from a given prototype.
-
- All attributes (like scanline format and top-down state) are
- copied, only the size can be varied. Note that the prototype's
- bitmap content is <em>not</em> copied, only a palette (if any).
*/
-BitmapDeviceSharedPtr BASEBMP_DLLPUBLIC cloneBitmapDevice(const basegfx::B2IVector& rSize,
- const BitmapDeviceSharedPtr& rProto);
+BitmapDeviceSharedPtr BASEBMP_DLLPUBLIC cloneBitmapDevice(const BitmapDeviceSharedPtr& rProto);
}