diff options
author | Andreas Bregas <ab@openoffice.org> | 2009-12-15 10:22:25 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2009-12-15 10:22:25 +0000 |
commit | a3fcabbfd4e72e01c3e3e4738c1483279a2b2923 (patch) | |
tree | 2bee19749d686651ecf044e85f738de79b1e32bd /scripting | |
parent | ab2c479d30f89cd8724945a4e4f3894095fb9d31 (diff) |
#i102261# Removed warnings, added project dependencies
Diffstat (limited to 'scripting')
-rwxr-xr-x | scripting/source/vbaevents/eventhelper.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scripting/source/vbaevents/eventhelper.cxx b/scripting/source/vbaevents/eventhelper.cxx index c945820492f3..7e4626e31c00 100755 --- a/scripting/source/vbaevents/eventhelper.cxx +++ b/scripting/source/vbaevents/eventhelper.cxx @@ -294,10 +294,10 @@ struct TypeList int nListLength; }; -Type typeXFixedText = GET_TYPE(awt::XFixedText); -Type typeXTextComponent = GET_TYPE(awt::XTextComponent); -Type typeXComboBox = GET_TYPE(awt::XComboBox); -Type typeXRadioButton = GET_TYPE(awt::XRadioButton); +Type typeXFixedText = GET_TYPE(awt::XFixedText) +Type typeXTextComponent = GET_TYPE(awt::XTextComponent) +Type typeXComboBox = GET_TYPE(awt::XComboBox) +Type typeXRadioButton = GET_TYPE(awt::XRadioButton) TypeList fixedTextList = {&typeXFixedText, 1}; @@ -648,6 +648,7 @@ public: EventListener( const Reference< XComponentContext >& rxContext ); // XEventListener virtual void SAL_CALL disposing(const lang::EventObject& Source) throw( RuntimeException ); + using cppu::OPropertySetHelper::disposing; // XScriptListener virtual void SAL_CALL firing(const ScriptEvent& evt) throw(RuntimeException); |