summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/formgeometryhandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/formgeometryhandler.cxx')
-rw-r--r--extensions/source/propctrlr/formgeometryhandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/formgeometryhandler.cxx b/extensions/source/propctrlr/formgeometryhandler.cxx
index e7b66273d48a..31f7c0ec5860 100644
--- a/extensions/source/propctrlr/formgeometryhandler.cxx
+++ b/extensions/source/propctrlr/formgeometryhandler.cxx
@@ -542,7 +542,7 @@ namespace pcr
if ( !m_xAssociatedShape.is() )
return Sequence< Property >();
- ::std::vector< Property > aProperties;
+ std::vector< Property > aProperties;
addInt32PropertyDescription( aProperties, PROPERTY_POSITIONX );
addInt32PropertyDescription( aProperties, PROPERTY_POSITIONY );
@@ -722,7 +722,7 @@ namespace pcr
{
::comphelper::ComponentMethodGuard aGuard( *this );
- ::std::vector< EventTranslation > aEventTranslations;
+ std::vector< EventTranslation > aEventTranslations;
aEventTranslations.reserve(2);
if ( _event.PropertyName == "Position" )
@@ -750,7 +750,7 @@ namespace pcr
aTranslatedEvent.Source = m_rParent;
aGuard.clear();
- for ( ::std::vector< EventTranslation >::const_iterator t = aEventTranslations.begin();
+ for ( std::vector< EventTranslation >::const_iterator t = aEventTranslations.begin();
t != aEventTranslations.end();
++t
)