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/vbanewfont.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/vbanewfont.cxx')
-rw-r--r-- | vbahelper/source/msforms/vbanewfont.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/vbahelper/source/msforms/vbanewfont.cxx b/vbahelper/source/msforms/vbanewfont.cxx index d051c1be2d1f..5778845c0c28 100644 --- a/vbahelper/source/msforms/vbanewfont.cxx +++ b/vbahelper/source/msforms/vbanewfont.cxx @@ -30,10 +30,7 @@ using namespace ::ooo::vba; VbaNewFont::VbaNewFont( - const uno::Reference< XHelperInterface >& rxParent, - const uno::Reference< uno::XComponentContext >& rxContext, const uno::Reference< beans::XPropertySet >& rxModelProps ) throw (uno::RuntimeException) : - VbaNewFont_BASE( rxParent, rxContext ), mxProps( rxModelProps, uno::UNO_SET_THROW ) { } @@ -132,10 +129,4 @@ void SAL_CALL VbaNewFont::setStrikethrough( sal_Bool bStrikethrough ) throw (uno mxProps->setPropertyValue( "FontStrikeout" ,uno::Any( bStrikethrough ? awt::FontStrikeout::SINGLE : awt::FontStrikeout::NONE ) ); } -// XHelperInterface - -VBAHELPER_IMPL_XHELPERINTERFACE( VbaNewFont, "ooo.vba.msforms.NewFont" ) - - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |