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

Work around MSC "'override' cannot be used with 'inline'" bug

Change-Id: I6eeb47699193ee024e975915011b1c3c5483bf9e
üst 990f52cb
...@@ -205,7 +205,8 @@ namespace pcr ...@@ -205,7 +205,8 @@ namespace pcr
inline virtual void SAL_CALL disposing(); inline virtual void SAL_CALL disposing();
// IModifyListener // IModifyListener
inline virtual void modified() SAL_OVERRIDE; virtual void modified() SAL_OVERRIDE
{ m_aImplControl.setModified(); }
/// returns a typed pointer to our control window /// returns a typed pointer to our control window
WindowType* getTypedControlWindow() { return static_cast< WindowType* > ( m_aImplControl.getVclControlWindow() ); } WindowType* getTypedControlWindow() { return static_cast< WindowType* > ( m_aImplControl.getVclControlWindow() ); }
...@@ -308,13 +309,6 @@ namespace pcr ...@@ -308,13 +309,6 @@ namespace pcr
} }
template< class CONTROL_INTERFACE, class CONTROL_WINDOW >
inline void CommonBehaviourControl< CONTROL_INTERFACE, CONTROL_WINDOW >::modified()
{
m_aImplControl.setModified();
}
template< class CONTROL_INTERFACE, class CONTROL_WINDOW > template< class CONTROL_INTERFACE, class CONTROL_WINDOW >
inline void CommonBehaviourControl< CONTROL_INTERFACE, CONTROL_WINDOW >::impl_checkDisposed_throw() inline void CommonBehaviourControl< CONTROL_INTERFACE, CONTROL_WINDOW >::impl_checkDisposed_throw()
{ {
......
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