Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 538348 | Differences between
and this patch

Collapse All | Expand All

(-)a/include/toolkit/helper/macros.hxx (-4 / +6 lines)
Lines 112-119 class ClassName : public ListenerMultiplexerBase, public InterfaceName \ Link Here
112
public: \
112
public: \
113
    ClassName( ::cppu::OWeakObject& rSource ); \
113
    ClassName( ::cppu::OWeakObject& rSource ); \
114
    ::com::sun::star::uno::Any  SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \
114
    ::com::sun::star::uno::Any  SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \
115
    void                        SAL_CALL acquire() throw() SAL_OVERRIDE  { ListenerMultiplexerBase::acquire(); } \
115
    void                        SAL_CALL acquire() throw() SAL_OVERRIDE; \
116
    void                        SAL_CALL release() throw() SAL_OVERRIDE  { ListenerMultiplexerBase::release(); } \
116
    void                        SAL_CALL release() throw() SAL_OVERRIDE; \
117
    void                        SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
117
    void                        SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
118
118
119
119
Lines 124-131 class TOOLKIT_DLLPUBLIC ClassName : public ListenerMultiplexerBase, public Inter Link Here
124
public: \
124
public: \
125
    ClassName( ::cppu::OWeakObject& rSource ); \
125
    ClassName( ::cppu::OWeakObject& rSource ); \
126
    ::com::sun::star::uno::Any  SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \
126
    ::com::sun::star::uno::Any  SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \
127
    void                        SAL_CALL acquire() throw() SAL_OVERRIDE  { ListenerMultiplexerBase::acquire(); } \
127
    void                        SAL_CALL acquire() throw() SAL_OVERRIDE; \
128
    void                        SAL_CALL release() throw() SAL_OVERRIDE  { ListenerMultiplexerBase::release(); } \
128
    void                        SAL_CALL release() throw() SAL_OVERRIDE; \
129
    void                        SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
129
    void                        SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
130
130
131
131
Lines 140-145 ClassName::ClassName( ::cppu::OWeakObject& rSource ) \ Link Here
140
    : ListenerMultiplexerBase( rSource ) \
140
    : ListenerMultiplexerBase( rSource ) \
141
{ \
141
{ \
142
} \
142
} \
143
void SAL_CALL ClassName::acquire() throw() { ListenerMultiplexerBase::acquire(); } \
144
void SAL_CALL ClassName::release() throw() { ListenerMultiplexerBase::release(); } \
143
::com::sun::star::uno::Any ClassName::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) \
145
::com::sun::star::uno::Any ClassName::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) \
144
{ \
146
{ \
145
    ::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType, \
147
    ::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType, \
(-)a/toolkit/source/helper/listenermultiplexer.cxx (-1 / +9 lines)
Lines 47-52 EventListenerMultiplexer::EventListenerMultiplexer( ::cppu::OWeakObject& rSource Link Here
47
{
47
{
48
}
48
}
49
49
50
void SAL_CALL EventListenerMultiplexer::acquire() throw ()
51
{
52
    return ListenerMultiplexerBase::acquire();
53
}
54
void SAL_CALL EventListenerMultiplexer::release() throw ()
55
{
56
    return ListenerMultiplexerBase::release();
57
}
58
50
// ::com::sun::star::uno::XInterface
59
// ::com::sun::star::uno::XInterface
51
::com::sun::star::uno::Any EventListenerMultiplexer::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception)
60
::com::sun::star::uno::Any EventListenerMultiplexer::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception)
52
{
61
{
53
- 

Return to bug 538348