[Libreoffice-commits] .: Branch 'libreoffice-4-0' - connectivity/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Dec 7 05:47:58 PST 2012


 connectivity/source/drivers/odbcbase/OResultSet.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 465d3512cca457c79e6ef85ad1cbf6bcc88e8882
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Fri Dec 7 14:46:46 2012 +0100

    no SAL_CALL for internal utility functions
    
    Change-Id: I789f8419a8020b8f5bc7a7a54639b076c1524e48

diff --git a/connectivity/source/drivers/odbcbase/OResultSet.cxx b/connectivity/source/drivers/odbcbase/OResultSet.cxx
index da69815..29c834e 100644
--- a/connectivity/source/drivers/odbcbase/OResultSet.cxx
+++ b/connectivity/source/drivers/odbcbase/OResultSet.cxx
@@ -635,7 +635,7 @@ Any SAL_CALL OResultSet::getObject( sal_Int32 columnIndex, const Reference< ::co
     return getValue<ORowSetValue>( columnIndex ).makeAny();
 }
 // -------------------------------------------------------------------------
-::rtl::OUString SAL_CALL OResultSet::impl_getString( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
+::rtl::OUString OResultSet::impl_getString( sal_Int32 columnIndex ) throw(SQLException, RuntimeException)
 {
     checkDisposed(OResultSet_BASE::rBHelper.bDisposed);
     const SWORD nColumnType = impl_getColumnType_nothrow(columnIndex);
@@ -1173,7 +1173,7 @@ Any SAL_CALL OResultSet::getBookmark(  ) throw( SQLException,  RuntimeException)
         throw SQLException();
     return m_aRow[0].makeAny();
 }
-Sequence<sal_Int8> SAL_CALL OResultSet::impl_getBookmark(  ) throw( SQLException,  RuntimeException)
+Sequence<sal_Int8> OResultSet::impl_getBookmark(  ) throw( SQLException,  RuntimeException)
 {
     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "odbc", "Ocke.Janssen at sun.com", "OResultSet::getBookmark" );
     checkDisposed(OResultSet_BASE::rBHelper.bDisposed);


More information about the Libreoffice-commits mailing list