Kaydet (Commit) 17cb3391 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove unnecessary IMPL_LINK_INLINE macro

Change-Id: I81cbec049b98d2d2619b0480e0cf54bd1d7b6718
üst e6c08b6b
......@@ -67,12 +67,11 @@ SbError SbiDdeControl::GetLastErr( DdeConnection* pConv )
return nDdeErrMap[ 2 * (nErr - DDE_FIRSTERR) + 1 ];
}
IMPL_LINK_INLINE( SbiDdeControl,Data , DdeData*, pData,
IMPL_LINK( SbiDdeControl,Data , DdeData*, pData )
{
aData = OUString::createFromAscii( static_cast<const char*>((const void*)*pData) );
return 1;
}
)
SbiDdeControl::SbiDdeControl()
{
......
......@@ -92,11 +92,6 @@ typedef sal_IntPtr (*PSTUB)( void*, void* );
#define IMPL_LINK_NOARG_INLINE_END( Class, Method ) \
IMPL_STUB( Class, Method, void* )
#define IMPL_LINK_INLINE( Class, Method, ArgType, ArgName, Body ) \
sal_IntPtr Class::Method( ArgType ArgName ) \
Body \
IMPL_STUB( Class, Method, ArgType )
#define EMPTYARG
class TOOLS_DLLPUBLIC Link
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment