summaryrefslogtreecommitdiff
path: root/include/vcl/devicecoordinate.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-12-15 15:31:50 +0200
committerTor Lillqvist <tml@collabora.com>2015-12-15 16:41:41 +0200
commit1cb87bf384820b3dc04b00422c7fc04f5d330ea2 (patch)
tree89cc756921e13bdd7048da83fe126edbffcc3d66 /include/vcl/devicecoordinate.hxx
parentb71814f180bcefad6dcb3ff02c42b3cb31315bc5 (diff)
Get rid of :: prefix for basegfx in include/vcl and vcl
We already used it without the :: prefix, in many cases in the same files even. It is nice to have some consistency. I was not bored enough to do it everywhere. Change-Id: Ic8ac5bd9b4b2c02c41e5ea937a3d9477824f21cf
Diffstat (limited to 'include/vcl/devicecoordinate.hxx')
-rw-r--r--include/vcl/devicecoordinate.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/devicecoordinate.hxx b/include/vcl/devicecoordinate.hxx
index 58ff3d2425dd..b098abbafb27 100644
--- a/include/vcl/devicecoordinate.hxx
+++ b/include/vcl/devicecoordinate.hxx
@@ -15,13 +15,13 @@
#if VCL_FLOAT_DEVICE_PIXEL
#include <basegfx/point/b2dpoint.hxx>
typedef double DeviceCoordinate;
-typedef ::basegfx::B2DPoint DevicePoint;
+typedef basegfx::B2DPoint DevicePoint;
#else /* !VCL_FLOAT_DEVICE_PIXEL */
#include <basegfx/point/b2ipoint.hxx>
typedef long DeviceCoordinate;
-typedef ::basegfx::B2IPoint DevicePoint;
+typedef basegfx::B2IPoint DevicePoint;
#endif /* ! Carpet Cushion */