diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 00:02:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 00:02:18 +0100 |
commit | 6a96ad54ee202adbc0cbe2b84156c270c906db40 (patch) | |
tree | 98df2691047719bae317246bab457aaf6dbb8355 /vcl/workben | |
parent | 08b4813172ff5566a9ea75e9fa54875edc2e593b (diff) |
loplugin:staticmethods
Change-Id: Ieaebacd43fa27b91b1ab3e6704bb591488954492
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/vcldemo.cxx | 4 |
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) { |