summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-10 00:02:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 00:02:18 +0100
commit6a96ad54ee202adbc0cbe2b84156c270c906db40 (patch)
tree98df2691047719bae317246bab457aaf6dbb8355 /vcl
parent08b4813172ff5566a9ea75e9fa54875edc2e593b (diff)
loplugin:staticmethods
Change-Id: Ieaebacd43fa27b91b1ab3e6704bb591488954492
Diffstat (limited to 'vcl')
-rw-r--r--vcl/workben/vcldemo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index a7fc47861cf7..cd501b6e4bc7 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -486,7 +486,7 @@ public:
rDev.SetClipRegion();
}
- void drawComplex (OutputDevice &rDev, Rectangle r)
+ static void drawComplex (OutputDevice &rDev, Rectangle r)
{
const unsigned char pInvalid[] = { 0xfe, 0x1f };
const unsigned char pDiacritic1[] = { 0x61, 0xcc, 0x8a, 0xcc, 0x8c };
@@ -601,7 +601,7 @@ public:
rDev.SetClipRegion();
}
// render text, bbox, DX arrays etc.
- long drawStringBox(OutputDevice &rDev, Point aPos,
+ static long drawStringBox(OutputDevice &rDev, Point aPos,
const OUString &aText,
long &nMaxTextHeight)
{