diff options
author | Santiago Martinez <smvarela@gmail.com> | 2012-04-14 19:31:10 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-16 21:44:19 +0100 |
commit | 727675e2948873dcfb97bff375f9a3ce662de23c (patch) | |
tree | 6b4ec631ccdfed96215552d7b90a9d59b24f2b6d /connectivity/source/drivers/mozab | |
parent | 9800f0c54c3832ef939e404eb84b9fc4a917669c (diff) |
Remove unused code in connectivity.
Diffstat (limited to 'connectivity/source/drivers/mozab')
4 files changed, 0 insertions, 28 deletions
diff --git a/connectivity/source/drivers/mozab/MCatalog.cxx b/connectivity/source/drivers/mozab/MCatalog.cxx index aed2de8c7bfc..d2303c8b8513 100644 --- a/connectivity/source/drivers/mozab/MCatalog.cxx +++ b/connectivity/source/drivers/mozab/MCatalog.cxx @@ -91,12 +91,6 @@ void OCatalog::refreshGroups() void OCatalog::refreshUsers() { } -// ------------------------------------------------------------------------- -const ::rtl::OUString& OCatalog::getDot() -{ - static const ::rtl::OUString sDot = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(".")); - return sDot; -} // ----------------------------------------------------------------------------- // XTablesSupplier diff --git a/connectivity/source/drivers/mozab/MCatalog.hxx b/connectivity/source/drivers/mozab/MCatalog.hxx index d75774f7de05..6ef0fec841b0 100644 --- a/connectivity/source/drivers/mozab/MCatalog.hxx +++ b/connectivity/source/drivers/mozab/MCatalog.hxx @@ -56,7 +56,6 @@ namespace connectivity sdbcx::OCollection* getPrivateTables() const { return m_pTables;} sdbcx::OCollection* getPrivateViews() const { return m_pViews; } - static const ::rtl::OUString& getDot(); }; } } diff --git a/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx b/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx index a8d828ffe989..f7276227f1f1 100644 --- a/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx +++ b/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx @@ -136,12 +136,6 @@ MQueryHelper::clear_results() } void -MQueryHelper::rewind() -{ - m_nIndex = 0; -} - -void MQueryHelper::reset() { m_nIndex = 0; @@ -256,18 +250,6 @@ MQueryHelper::getByIndex( sal_uInt32 nRow ) } sal_Bool -MQueryHelper::hasMore() const -{ - return m_bHasMore; -} - -sal_Bool -MQueryHelper::atEnd() const -{ - return m_bAtEnd; -} - -sal_Bool MQueryHelper::isError() const { return m_bErrorCondition; diff --git a/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx b/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx index 6884ddd2c8b3..ce8091b79b1d 100644 --- a/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx +++ b/connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx @@ -103,7 +103,6 @@ namespace connectivity virtual ~MQueryHelper(); void reset(); - void rewind(); MQueryHelperResultEntry* next( ); @@ -112,8 +111,6 @@ namespace connectivity const ErrorDescriptor& getError() const { return m_aError; } sal_Bool isError() const; - sal_Bool hasMore() const; - sal_Bool atEnd() const; sal_Bool queryComplete() const; |