Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


On Friday 10 of February 2012, Stephan Bergmann wrote:
On 02/10/2012 11:30 AM, Lubos Lunak wrote:
+    /**
+     * @overload
+     * @since LibreOffice 3.6
+     */
+    oslGenericFunction SAL_CALL getFunctionSymbol( const
::rtl::OUString& ustrFunctionSymbolName ) const +    {
+        return ( osl_getFunctionSymbol( m_Module,
ustrFunctionSymbolName.pData ) ); +    }
+
     /// @since LibreOffice 3.5
     oslGenericFunction SAL_CALL getFunctionSymbol(char const * name)
const { return osl_getAsciiFunctionSymbol(m_Module, name);
     }

+    /**
+     * @overload
+     * @since LibreOffice 3.6
+     */
+    oslGenericFunction SAL_CALL getFunctionSymbol(char const * name) {
+        return osl_getAsciiFunctionSymbol(m_Module, name);
+    }
+
     operator oslModule() const
     {
         return m_Module;

I guess its fine to just add the missing "const" to the existing
OUString const & overload---or would that bring back the ambiguity?

 This is sal/, so the library needs to maintain binary compatibility, does it 
not? That requires adding the OUString overload rather than fixing the 
exiting function. I don't know if the const char* overload really needs the 
non-const variant as well, but it's a tiny inline function, so I added it for 
the symmetry, just in case.

-- 
 Lubos Lunak
 l.lunak@suse.cz

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.