diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 12:06:47 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 14:23:11 +0200 |
commit | 1946794ae09ba732022fe6a74ea45e304ab70b84 (patch) | |
tree | e32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /drawinglayer/source/geometry/viewinformation3d.cxx | |
parent | 5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff) |
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk
have kept them, in order not to break external API (the automatic using declaration
is LO-internal).
Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'drawinglayer/source/geometry/viewinformation3d.cxx')
-rw-r--r-- | drawinglayer/source/geometry/viewinformation3d.cxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/drawinglayer/source/geometry/viewinformation3d.cxx b/drawinglayer/source/geometry/viewinformation3d.cxx index 3569a2d298bc..7593dc0045f0 100644 --- a/drawinglayer/source/geometry/viewinformation3d.cxx +++ b/drawinglayer/source/geometry/viewinformation3d.cxx @@ -77,57 +77,57 @@ namespace drawinglayer uno::Sequence< beans::PropertyValue > mxExtendedInformation; // the local UNO API strings - const ::rtl::OUString& getNamePropertyObjectTransformation() + const OUString& getNamePropertyObjectTransformation() { - static ::rtl::OUString s_sNameProperty("ObjectTransformation"); + static OUString s_sNameProperty("ObjectTransformation"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyOrientation() + const OUString& getNamePropertyOrientation() { - static ::rtl::OUString s_sNameProperty("Orientation"); + static OUString s_sNameProperty("Orientation"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyProjection() + const OUString& getNamePropertyProjection() { - static ::rtl::OUString s_sNameProperty("Projection"); + static OUString s_sNameProperty("Projection"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyProjection_30() + const OUString& getNamePropertyProjection_30() { - static ::rtl::OUString s_sNameProperty("Projection30"); + static OUString s_sNameProperty("Projection30"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyProjection_31() + const OUString& getNamePropertyProjection_31() { - static ::rtl::OUString s_sNameProperty("Projection31"); + static OUString s_sNameProperty("Projection31"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyProjection_32() + const OUString& getNamePropertyProjection_32() { - static ::rtl::OUString s_sNameProperty("Projection32"); + static OUString s_sNameProperty("Projection32"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyProjection_33() + const OUString& getNamePropertyProjection_33() { - static ::rtl::OUString s_sNameProperty("Projection33"); + static OUString s_sNameProperty("Projection33"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyDeviceToView() + const OUString& getNamePropertyDeviceToView() { - static ::rtl::OUString s_sNameProperty("DeviceToView"); + static OUString s_sNameProperty("DeviceToView"); return s_sNameProperty; } - const ::rtl::OUString& getNamePropertyTime() + const OUString& getNamePropertyTime() { - static ::rtl::OUString s_sNamePropertyTime("Time"); + static OUString s_sNamePropertyTime("Time"); return s_sNamePropertyTime; } |