summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-02-10 13:33:22 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-02-10 13:34:05 +0100
commit31e236c5efa01ac5c681a2f18774fe66a9e1249e (patch)
tree0af27d2cf73678f8fdf20c70f196706c6c5409f5
parentc57da7aa4431abdfc793f07e9ae0f40216eadbed (diff)
consistent constness for getFunctionSymbol() overloads
This is an inline function, so there should be no problems with binary compatibility.
-rw-r--r--sal/inc/osl/module.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/inc/osl/module.hxx b/sal/inc/osl/module.hxx
index c8d39a2ed6ac..0d7bca644d92 100644
--- a/sal/inc/osl/module.hxx
+++ b/sal/inc/osl/module.hxx
@@ -147,7 +147,7 @@ public:
@see getSymbol
*/
- oslGenericFunction SAL_CALL getFunctionSymbol( const ::rtl::OUString& ustrFunctionSymbolName )
+ oslGenericFunction SAL_CALL getFunctionSymbol( const ::rtl::OUString& ustrFunctionSymbolName ) const
{
return ( osl_getFunctionSymbol( m_Module, ustrFunctionSymbolName.pData ) );
}