summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/formcontrolcontainer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography/formcontrolcontainer.cxx')
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/bibliography/formcontrolcontainer.cxx b/extensions/source/bibliography/formcontrolcontainer.cxx
index 4da38e35780b..4097bef737a0 100644
--- a/extensions/source/bibliography/formcontrolcontainer.cxx
+++ b/extensions/source/bibliography/formcontrolcontainer.cxx
@@ -72,7 +72,7 @@ namespace bib
m_xForm = _rxForm;
}
- struct ControlModeSwitch : public ::std::unary_function< Reference< XControl >, void >
+ struct ControlModeSwitch : public std::unary_function< Reference< XControl >, void >
{
bool bDesign;
explicit ControlModeSwitch( bool _bDesign ) : bDesign( _bDesign ) { }
@@ -93,7 +93,7 @@ namespace bib
if ( xControlCont.is() )
aControls = xControlCont->getControls();
- ::std::for_each(
+ std::for_each(
aControls.getConstArray(),
aControls.getConstArray() + aControls.getLength(),
ControlModeSwitch( _bDesign )