summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-04-21 14:05:01 +0200
committerTomaž Vajngerl <quikee@gmail.com>2013-04-21 21:55:46 +0200
commit8ae05bf7a04c961d82c6436f9d299ff22e2cc05a (patch)
tree74801cc4abc7b03b3fb1c76e620a1adb9539add8 /vcl/inc
parent29545247e4bab9f0e0acd7043bfc52880409a310 (diff)
canBeRotated added to ask if native rotation can be performed.
The canBeRotated method was added to determine if a native rotation can be performed for a graphics or not. Change-Id: I026cf6fe4baa4d964d0a2c2b6e36c3b15aa91549
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/vcl/GraphicNativeTransform.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/vcl/GraphicNativeTransform.hxx b/vcl/inc/vcl/GraphicNativeTransform.hxx
index 6bf83fec0afe..db727a22c5ff 100644
--- a/vcl/inc/vcl/GraphicNativeTransform.hxx
+++ b/vcl/inc/vcl/GraphicNativeTransform.hxx
@@ -27,13 +27,13 @@ class VCL_DLLPUBLIC GraphicNativeTransform
Graphic& mrGraphic;
bool rotateJPEG (sal_uInt16 aRotation);
- bool rotateSVG (sal_uInt16 aRotation);
bool rotateGeneric (sal_uInt16 aRotation, OUString aType);
public:
GraphicNativeTransform(Graphic& rGraphic);
virtual ~GraphicNativeTransform();
+ bool canBeRotated();
bool rotate(sal_uInt16 aRotation);
};