diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-02-17 19:06:24 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-02-17 18:41:19 +0000 |
commit | b57d51e32fb85e9cde64f85719725253162c42e4 (patch) | |
tree | afe75470b9fc3c12a3d240577b07042985882675 /dbaccess/source/ui/dlg/ConnectionHelper.cxx | |
parent | c910d1dae1a9fcf0591098244debc863dd59618a (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 'dbaccess/source/ui/dlg/ConnectionHelper.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/ConnectionHelper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.cxx b/dbaccess/source/ui/dlg/ConnectionHelper.cxx index bb0ec8c1404e..090f0cb8e287 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.cxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.cxx @@ -575,7 +575,7 @@ namespace dbaui INetProtocol eProtocol = aParser.GetProtocol(); - ::std::vector< OUString > aToBeCreated; // the to-be-created levels + std::vector< OUString > aToBeCreated; // the to-be-created levels // search a level which exists IS_PATH_EXIST eParentExists = PATH_NOT_EXIST; @@ -615,7 +615,7 @@ namespace dbaui Sequence< Any > aNewDirectoryAttributes(1); // loop - for ( ::std::vector< OUString >::const_reverse_iterator aLocalName = aToBeCreated.rbegin(); + for ( std::vector< OUString >::const_reverse_iterator aLocalName = aToBeCreated.rbegin(); aLocalName != aToBeCreated.rend(); ++aLocalName ) @@ -634,14 +634,14 @@ namespace dbaui return true; } - void OConnectionHelper::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList) + void OConnectionHelper::fillWindows(std::vector< ISaveValueWrapper* >& _rControlList) { _rControlList.push_back(new ODisableWrapper<FixedText>(m_pFT_Connection)); _rControlList.push_back(new ODisableWrapper<PushButton>(m_pPB_Connection)); _rControlList.push_back(new ODisableWrapper<PushButton>(m_pPB_CreateDB)); } - void OConnectionHelper::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList) + void OConnectionHelper::fillControls(std::vector< ISaveValueWrapper* >& _rControlList) { _rControlList.push_back( new OSaveValueWrapper<Edit>( m_pConnectionURL ) ); } |