From 85b1f91779cd90eb1c7808909c2721239fc51dd1 Mon Sep 17 00:00:00 2001 From: Douglas Mencken Date: Sun, 4 Oct 2015 22:19:14 -0400 Subject: vba: convert to variadic InheritedHelperInterfaceImpl&WeakImpl etc Variadic templates ~-i.e. templates, which can take an arbitrary number of arguments of any type-~ is new C++11 feature note that uno::Reference and cppu::UnoType can only take one parameter thus leave XNamedObjectCollectionHelper non-variadic in vbacollectionimpl.hxx Change-Id: I22e60fa050ee31d39ae8bb7cac06cf243c4587b1 Reviewed-on: https://gerrit.libreoffice.org/19145 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- include/vbahelper/vbaglobalbase.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/vbahelper/vbaglobalbase.hxx') diff --git a/include/vbahelper/vbaglobalbase.hxx b/include/vbahelper/vbaglobalbase.hxx index fec13aec6317..96e26d988591 100644 --- a/include/vbahelper/vbaglobalbase.hxx +++ b/include/vbahelper/vbaglobalbase.hxx @@ -22,7 +22,7 @@ #include #include -typedef InheritedHelperInterfaceImpl1< ov::XGlobalsBase > Globals_BASE; +typedef InheritedHelperInterfaceWeakImpl< ov::XGlobalsBase > Globals_BASE; class VBAHELPER_DLLPUBLIC VbaGlobalsBase : public Globals_BASE { protected: -- cgit