summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2012-12-07 14:46:46 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2012-12-07 14:47:37 +0100
commit465d3512cca457c79e6ef85ad1cbf6bcc88e8882 (patch)
treedcb084f8aa822d60dac3af549aa66636d47d35f3 /connectivity
parent42a5936eb060e1850508b7402ca9fc5a238d713a (diff)
no SAL_CALL for internal utility functions
Change-Id: I789f8419a8020b8f5bc7a7a54639b076c1524e48
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSet.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/odbcbase/OResultSet.cxx b/connectivity/source/drivers/odbcbase/OResultSet.cxx
index da698153ff85..29c834e279df 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@sun.com", "OResultSet::getBookmark" );
checkDisposed(OResultSet_BASE::rBHelper.bDisposed);