summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography
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/bibliography
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/bibliography')
-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 )