summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/TableController.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/inc/TableController.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableController.hxx6
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();