diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 10:04:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 10:06:16 +0200 |
commit | 82a72bb848c4fc343a9095953242eca03d943780 (patch) | |
tree | ef9382203a80fcf45ee662ebcd5dac79d55ec690 /vbahelper/source/msforms/vbacombobox.cxx | |
parent | a3ad01dc1e07da21182077bd899094fd73f57714 (diff) |
VbaNewFont apparently does not inherit XHelperInterface
...and thus should simply derive from WeakImplHelper1 instead of
InheritedHelperInterfaceImpl1?
Change-Id: I0cb023a905e93bf9c223676c964f039ac7eee7e0
Diffstat (limited to 'vbahelper/source/msforms/vbacombobox.cxx')
-rw-r--r-- | vbahelper/source/msforms/vbacombobox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/msforms/vbacombobox.cxx b/vbahelper/source/msforms/vbacombobox.cxx index 3f2c0df9ab60..dc7189b64f88 100644 --- a/vbahelper/source/msforms/vbacombobox.cxx +++ b/vbahelper/source/msforms/vbacombobox.cxx @@ -245,7 +245,7 @@ sal_Int32 SAL_CALL ScVbaComboBox::getTextLength() throw (uno::RuntimeException, uno::Reference< msforms::XNewFont > SAL_CALL ScVbaComboBox::getFont() throw (uno::RuntimeException, std::exception) { - return new VbaNewFont( this, mxContext, m_xProps ); + return new VbaNewFont( m_xProps ); } OUString |