diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-01-09 11:39:52 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-01-09 11:39:52 +0000 |
commit | 2e4675917ba40bdfe6e76bc7fabc408eb8ced93b (patch) | |
tree | 296bfe5306e348e4cb81a8008b8945160da0a5f9 /connectivity/source | |
parent | ec07cca8d847fa1cefdeb61f069fcff4022cd9b6 (diff) |
full qualified namespace
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/ado/ADatabaseMetaData.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FDatabaseMetaData.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/odbc/ODatabaseMetaData.cxx | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/connectivity/source/drivers/ado/ADatabaseMetaData.cxx b/connectivity/source/drivers/ado/ADatabaseMetaData.cxx index 39b6027f6ec6c..e71015d5f9997 100644 --- a/connectivity/source/drivers/ado/ADatabaseMetaData.cxx +++ b/connectivity/source/drivers/ado/ADatabaseMetaData.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ADatabaseMetaData.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2000-11-03 14:09:51 $ + * last change: $Author: oj $ $Date: 2001-01-09 12:38:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -93,7 +93,7 @@ using namespace com::sun::star::sdbc; // using namespace connectivity; ODatabaseMetaData::ODatabaseMetaData(OConnection* _pCon) - :ODatabaseMetaDataBase(_pCon) + : ::connectivity::ODatabaseMetaDataBase(_pCon) ,m_pADOConnection(_pCon->getConnection()) ,m_pConnection(_pCon) { diff --git a/connectivity/source/drivers/file/FDatabaseMetaData.cxx b/connectivity/source/drivers/file/FDatabaseMetaData.cxx index e52cfb6d4e7fc..405e104384b27 100644 --- a/connectivity/source/drivers/file/FDatabaseMetaData.cxx +++ b/connectivity/source/drivers/file/FDatabaseMetaData.cxx @@ -2,9 +2,9 @@ * * $RCSfile: FDatabaseMetaData.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: oj $ $Date: 2000-12-06 11:29:33 $ + * last change: $Author: oj $ $Date: 2001-01-09 12:39:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,7 +106,7 @@ using namespace com::sun::star::sdbcx; using namespace com::sun::star::lang; using namespace com::sun::star::container; -ODatabaseMetaData::ODatabaseMetaData(OConnection* _pCon) : ODatabaseMetaDataBase(_pCon) +ODatabaseMetaData::ODatabaseMetaData(OConnection* _pCon) : ::connectivity::ODatabaseMetaDataBase(_pCon) ,m_pConnection(_pCon) { } diff --git a/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx b/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx index dfb503b8e15bf..8f41bed0231eb 100644 --- a/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx +++ b/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ODatabaseMetaData.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2000-11-22 16:10:33 $ + * last change: $Author: oj $ $Date: 2001-01-09 12:34:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -89,7 +89,7 @@ using namespace com::sun::star::beans; using namespace com::sun::star::sdbc; ODatabaseMetaData::ODatabaseMetaData(const SQLHANDLE _pHandle,OConnection* _pCon) - : ODatabaseMetaDataBase(_pCon) + : ::connectivity::ODatabaseMetaDataBase(_pCon) ,m_aConnectionHandle(_pHandle) ,m_pConnection(_pCon) { |