From 013d9789c753d46f0a038e54db6e21f4d4922891 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 15 Feb 2017 22:31:33 +0200 Subject: Drop :: prefix from std in [a-b]*/ Change-Id: I0422aaf39bbce889c95ed9a81a0784cb03a1badd Reviewed-on: https://gerrit.libreoffice.org/34320 Tested-by: Jenkins Reviewed-by: Tor Lillqvist --- basic/source/inc/expr.hxx | 4 ++-- basic/source/inc/parser.hxx | 2 +- basic/source/inc/propacc.hxx | 2 +- basic/source/inc/sbunoobj.hxx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'basic/source/inc') diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx index a43f4544031f..c50489175ba3 100644 --- a/basic/source/inc/expr.hxx +++ b/basic/source/inc/expr.hxx @@ -35,8 +35,8 @@ class SbiSymDef; class SbiProcDef; -typedef ::std::unique_ptr SbiExprListPtr; -typedef ::std::vector SbiExprListVector; +typedef std::unique_ptr SbiExprListPtr; +typedef std::vector SbiExprListVector; struct SbVar { SbiExprNode* pNext; // next element (for structures) diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx index 9d2553f67b1b..e81ce3b50c29 100644 --- a/basic/source/inc/parser.hxx +++ b/basic/source/inc/parser.hxx @@ -26,7 +26,7 @@ #include -typedef ::std::vector< OUString > StringVector; +typedef std::vector< OUString > StringVector; struct SbiParseStack; diff --git a/basic/source/inc/propacc.hxx b/basic/source/inc/propacc.hxx index a3c79e6cdee8..e1fd4802ce12 100644 --- a/basic/source/inc/propacc.hxx +++ b/basic/source/inc/propacc.hxx @@ -28,7 +28,7 @@ #include -typedef ::std::vector SbPropertyValueArr_Impl; +typedef std::vector SbPropertyValueArr_Impl; typedef ::cppu::WeakImplHelper< css::beans::XPropertySet, css::beans::XPropertyAccess > SbPropertyValuesHelper; diff --git a/basic/source/inc/sbunoobj.hxx b/basic/source/inc/sbunoobj.hxx index 9ec617a7230a..3ee8f0478f1a 100644 --- a/basic/source/inc/sbunoobj.hxx +++ b/basic/source/inc/sbunoobj.hxx @@ -71,7 +71,7 @@ class SbUnoStructRefObject: public SbxObject return rProp.toAsciiUpperCase().compareTo( rOtherProp.toAsciiUpperCase() ) < 0; } }; - typedef ::std::map< OUString, StructRefInfo*, caseLessComp > StructFieldInfo; + typedef std::map< OUString, StructRefInfo*, caseLessComp > StructFieldInfo; StructFieldInfo maFields; StructRefInfo maMemberInfo; bool mbMemberCacheInit; -- cgit