summaryrefslogtreecommitdiffstats
path: root/include/vcl/outdev.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-20 15:48:04 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-23 09:19:07 +0100
commit35cf00e20ad5826f715f5d5bbc48d486228774ca (patch)
treef991ea468d892a5a7e1ae87c6818eacd1a55cfe9 /include/vcl/outdev.hxx
parentImpEditView::ShowCursor: don't assume map mode is twips (diff)
downloadcore-35cf00e20ad5826f715f5d5bbc48d486228774ca.tar.gz
core-35cf00e20ad5826f715f5d5bbc48d486228774ca.zip
OutputDevice::LogicInvalidate: take a Rectangle
At the end this gets exported in the LOK API as a rectangle anyway, so better to convert the vcl::Regions into a Rectangle, and not the other way around. Change-Id: I81fede6e30af112d17bb74328801915d90474863
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r--include/vcl/outdev.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 30c8c839c56b..c3adbbff7bfc 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -1732,11 +1732,11 @@ public:
protected:
/**
- * Notification about some region of the output device got invalidated.
+ * Notification about some rectangle of the output device got invalidated.
*
- * @param pRegion If 0, that means the whole area, otherwise the area in logic coordinates.
+ * @param pRectangle If 0, that means the whole area, otherwise the area in logic coordinates.
*/
- virtual void LogicInvalidate(const vcl::Region* /*pRegion*/) { }
+ virtual void LogicInvalidate(const Rectangle* /*pRectangle*/) { }
private: