summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/editpropertyhandler.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-17 19:06:24 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-17 18:41:19 +0000
commitb57d51e32fb85e9cde64f85719725253162c42e4 (patch)
treeafe75470b9fc3c12a3d240577b07042985882675 /extensions/source/propctrlr/editpropertyhandler.cxx
parentc910d1dae1a9fcf0591098244debc863dd59618a (diff)
Drop :: prefix from std in [de]*/
Change-Id: I3247894fe022dce7f0aa351bd85fefcd7c545dd4 Reviewed-on: https://gerrit.libreoffice.org/34377 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'extensions/source/propctrlr/editpropertyhandler.cxx')
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/editpropertyhandler.cxx b/extensions/source/propctrlr/editpropertyhandler.cxx
index 456de960a112..073016ebda91 100644
--- a/extensions/source/propctrlr/editpropertyhandler.cxx
+++ b/extensions/source/propctrlr/editpropertyhandler.cxx
@@ -212,7 +212,7 @@ namespace pcr
Sequence< Property > SAL_CALL EditPropertyHandler::doDescribeSupportedProperties() const
{
- ::std::vector< Property > aProperties;
+ std::vector< Property > aProperties;
if ( implHaveBothScrollBarProperties() )
addInt32PropertyDescription( aProperties, PROPERTY_SHOW_SCROLLBARS );
@@ -229,7 +229,7 @@ namespace pcr
Sequence< OUString > SAL_CALL EditPropertyHandler::getSupersededProperties( )
{
::osl::MutexGuard aGuard( m_aMutex );
- ::std::vector< OUString > aSuperseded;
+ std::vector< OUString > aSuperseded;
if ( implHaveBothScrollBarProperties() )
{
aSuperseded.push_back( static_cast<const OUString&>(PROPERTY_HSCROLL) );
@@ -249,7 +249,7 @@ namespace pcr
Sequence< OUString > SAL_CALL EditPropertyHandler::getActuatingProperties( )
{
::osl::MutexGuard aGuard( m_aMutex );
- ::std::vector< OUString > aInterestingActuatingProps;
+ std::vector< OUString > aInterestingActuatingProps;
if ( implHaveTextTypeProperty() )
aInterestingActuatingProps.push_back( static_cast<const OUString&>(PROPERTY_TEXTTYPE) );
aInterestingActuatingProps.push_back( static_cast<const OUString&>(PROPERTY_MULTILINE) );