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/inc/TableController.hxx | |
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/inc/TableController.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/TableController.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/TableController.hxx b/dbaccess/source/ui/inc/TableController.hxx index bd543443a38d..a6a4b60a22e0 100644 --- a/dbaccess/source/ui/inc/TableController.hxx +++ b/dbaccess/source/ui/inc/TableController.hxx @@ -39,9 +39,9 @@ namespace dbaui { private: OModuleClient m_aModuleClient; - ::std::vector< std::shared_ptr<OTableRow> > m_vRowList; + std::vector< std::shared_ptr<OTableRow> > m_vRowList; OTypeInfoMap m_aTypeInfo; - ::std::vector<OTypeInfoMap::iterator> m_aTypeInfoIndex; + std::vector<OTypeInfoMap::iterator> m_aTypeInfoIndex; css::uno::Reference< css::beans::XPropertySet > m_xTable; @@ -99,7 +99,7 @@ namespace dbaui virtual void impl_onModifyChanged() override; - inline ::std::vector< std::shared_ptr<OTableRow> >& getRows() { return m_vRowList; } + inline std::vector< std::shared_ptr<OTableRow> >& getRows() { return m_vRowList; } /// returns the position of the first empty row sal_Int32 getFirstEmptyRowPosition(); |