static UNO references
Stephan Bergmann
sbergman at redhat.com
Thu Jan 29 03:38:32 PST 2015
[Noel's original mail apparently did not make it to the list due to
containing the list of occurrences as an attachment]
On 01/28/2015 09:15 AM, Noel Grandin wrote:
> So MStahl asked me to write a plugin that warns about static UNO
> references.
>
> Since my plugin has found 221 occurrences of these (see attached list),
> I assume that some subset of them are legal?
>
> Any ideas of how to distinguish between good ones and bad ones?
Hardly any should be good.
There are cases where single-instance services are implemented with a
static, instead of using say cppu::createOneInstanceComponentFactory.
(With special cases like scaddins/source/pricing/pricing.cxx:174 which
already uses createOneInstanceFactory, so the static should be unnecessary.)
There are various cases of optimization. For one, editeng's LinguMgr
appears to make available dummy implementations that load the real
services on demand (though its not clear to me where the win is, given
that e.g. all relevant member functions of SpellDummy_Impl in
editeng/source/misc/unolingu.cxx first thing make sure the real service
is set up anyway).
For another, e.g. svl/source/numbers/numfmuno.cxx:706 tries to avoid
repeated instantiation of XPropertySetInfo (which apparently has
identical functionality for all instances of SvNumberFormatObj, so they
can all share a single one). Whether that optimization is necessary
would need some judgement.
So, in short, each single one of the 221 places could probably benefit
from inspection, but there's also no single answer how to handle each one.
> /home/noel/libo4/stoc/source/javaloader/javaloader.cxx:376:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< XInterface > *pStaticRef = 0;
> --
> /home/noel/libo4/stoc/source/javavm/javavm.cxx:141:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::uno::XInterface > m_xSingleton;
> --
> /home/noel/libo4/stoc/source/javavm/javavm.cxx:197:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> css::uno::Reference< css::uno::XInterface > SingletonFactory::m_xSingleton;
> --
> /home/noel/libo4/configmgr/source/defaultprovider.cxx:40:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::uno::XInterface > singleton(
> --
> /home/noel/libo4/scaddins/source/pricing/pricing.cxx:174:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xInst = (cppu::OWeakObject*) new ScaPricingAddIn();
> --
> /home/noel/libo4/scaddins/source/datefunc/datefunc.cxx:169:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xInst = (cppu::OWeakObject*) new ScaDateAddIn();
> --
> /home/noel/libo4/ucb/source/ucp/cmis/auth_provider.hxx:21:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment> sm_xEnv;
> --
> /home/noel/libo4/ucb/source/ucp/cmis/auth_provider.cxx:25:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment>
> --
> /home/noel/libo4/ucb/source/ucp/cmis/auth_provider.hxx:21:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment> sm_xEnv;
> --
> /home/noel/libo4/ucb/source/ucp/cmis/auth_provider.hxx:21:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment> sm_xEnv;
> --
> /home/noel/libo4/svl/source/numbers/numfmuno.cxx:706:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/svl/source/numbers/numfmuno.cxx:962:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/vcl/source/window/dlgctrl.cxx:397:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< i18n::XCharacterClassification > xCharClass;
> --
> /home/noel/libo4/vcl/source/control/field2.cxx:62:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< i18n::XCharacterClassification > xCharClass;
> --
> /home/noel/libo4/vcl/source/outdev/outdev.cxx:366:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference<css::lang::XMultiComponentFactory > xCanvasFactory( css::rendering::CanvasFactory::create( xContext ) );
> --
> /home/noel/libo4/vcl/source/glyphs/graphite_layout.cxx:590:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::i18n::XCharacterClassification > xCharClass;
> --
> /home/noel/libo4/toolkit/source/awt/vclxprinter.cxx:100:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/dialogcontrol.cxx:930:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/dialogcontrol.cxx:1050:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/dialogcontrol.cxx:1229:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/tabpagemodel.cxx:110:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/tkscrollbar.cxx:82:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrolcontainermodel.cxx:61:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:170:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:564:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:721:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:921:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:1066:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:1290:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:1499:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:1696:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:1845:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:2047:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:2884:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:3408:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:3664:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:3879:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:4097:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:4307:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:4468:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/toolkit/source/controls/unocontrols.cxx:4612:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/desktop/source/splash/unxsplash.cxx:142:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > m_xINSTANCE;
> --
> /home/noel/libo4/xmlsecurity/source/xmlsec/xmlstreamio.cxx:40:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XUriBinding > m_xUriBinding ;
> --
> /home/noel/libo4/framework/source/fwi/uielement/rootitemcontainer.cxx:337:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/fwi/uielement/rootitemcontainer.cxx:348:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/basic/source/runtime/methods.cxx:166:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< ucb::XSimpleFileAccess3 > xSFI;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/editeng/source/items/numitem.cxx:62:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> SvxNumberType::xFormatter = 0;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:501:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XLinguServiceManager2 > LinguMgr::xLngSvcMgr = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:502:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XSpellChecker1 > LinguMgr::xSpell = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:503:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XHyphenator > LinguMgr::xHyph = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:504:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XThesaurus > LinguMgr::xThes = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:505:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XSearchableDictionaryList > LinguMgr::xDicList = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:506:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XLinguProperties > LinguMgr::xProp = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:507:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XDictionary > LinguMgr::xIgnoreAll = 0;
> --
> /home/noel/libo4/editeng/source/misc/unolingu.cxx:508:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< XDictionary > LinguMgr::xChangeAll = 0;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/drawinglayer/source/primitive2d/textbreakuphelper.cxx:193:17: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XBreakIterator > xBreakIterator;
> --
> /home/noel/libo4/drawinglayer/source/processor2d/vclmetafileprocessor2d.hxx:122:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
> --
> /home/noel/libo4/drawinglayer/source/processor2d/vclmetafileprocessor2d.hxx:122:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
> --
> /home/noel/libo4/drawinglayer/source/processor2d/vclmetafileprocessor2d.hxx:122:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
> --
> /home/noel/libo4/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:560:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< ::com::sun::star::i18n::XBreakIterator > VclMetafileProcessor2D::mxBreakIterator;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/framework/source/tabwin/tabwindow.cxx:882:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/tabwin/tabwindow.cxx:893:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/scaddins/source/analysis/analysis.cxx:238:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xInst = (cppu::OWeakObject*) new AnalysisAddIn( comphelper::getComponentContext(xServiceFact) );
> --
> /home/noel/libo4/sfx2/source/doc/DocumentMetadataAccess.cxx:220:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< rdf::XURI > xURI(
> --
> /home/noel/libo4/sfx2/source/doc/iframe.cxx:250:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo = new SfxItemPropertySetInfo( maPropMap );
> --
> /home/noel/libo4/sfx2/source/doc/plugin.cxx:242:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo = new SfxItemPropertySetInfo( maPropMap );
> --
> /home/noel/libo4/framework/source/helper/uiconfigelementwrapperbase.cxx:407:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/helper/uiconfigelementwrapperbase.cxx:418:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/framework/source/helper/uielementwrapperbase.cxx:201:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/helper/uielementwrapperbase.cxx:212:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/framework/source/layoutmanager/layoutmanager.cxx:3176:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/layoutmanager/layoutmanager.cxx:3184:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
> --
> /home/noel/libo4/framework/source/services/desktop.cxx:1479:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo >* pInfo = NULL;
> --
> /home/noel/libo4/framework/source/services/desktop.cxx:1490:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo > xInfo(
> --
> /home/noel/libo4/framework/source/services/autorecovery.cxx:4081:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo >* pInfo = 0;
> --
> /home/noel/libo4/framework/source/services/autorecovery.cxx:4087:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static css::uno::Reference< css::beans::XPropertySetInfo > xInfo(
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/desktop/source/lib/init.cxx:300:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<css::uno::XComponentContext> xContext;
> --
> /home/noel/libo4/desktop/source/lib/init.cxx:301:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<css::lang::XMultiServiceFactory> xSFactory;
> --
> /home/noel/libo4/desktop/source/lib/init.cxx:302:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<css::lang::XMultiComponentFactory> xFactory;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/svx/source/customshapes/EnhancedCustomShapeFontWork.hxx:28:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/svx/source/customshapes/EnhancedCustomShapeFontWork.hxx:28:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > mxBreakIterator;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/chart2/source/model/main/Axis.cxx:288:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/DataPoint.cxx:76:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/BaseCoordinateSystem.cxx:110:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/FormattedString.cxx:89:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/GridProperties.cxx:117:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/PageBackground.cxx:102:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/Diagram.cxx:265:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/Legend.cxx:172:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/StockBar.cxx:76:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/Title.cxx:220:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/main/Wall.cxx:104:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/AreaChartTypeTemplate.cxx:108:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/BarChartTypeTemplate.cxx:116:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/CandleStickChartType.cxx:139:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/BubbleChartTypeTemplate.cxx:94:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/BubbleChartType.cxx:91:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/ColumnChartType.cxx:114:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/ChartType.cxx:244:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:113:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/GL3DBarChartType.cxx:79:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> xPropertySetInfo;
> --
> /home/noel/libo4/chart2/source/model/template/LineChartType.cxx:127:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx:82:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> xPropertySetInfo;
> --
> /home/noel/libo4/chart2/source/model/template/NetChartType.cxx:123:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/LineChartTypeTemplate.cxx:132:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/PieChartType.cxx:115:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/ScatterChartType.cxx:131:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/PieChartTypeTemplate.cxx:141:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/ScatterChartTypeTemplate.cxx:134:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/model/template/StockChartTypeTemplate.cxx:142:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/tools/ErrorBar.cxx:140:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef (
> --
> /home/noel/libo4/chart2/source/tools/RegressionCurveModel.cxx:171:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/tools/RegressionEquation.cxx:168:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx:110:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx:92:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPropertySetInfo(
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/forms/source/inc/limitedformats.hxx:45:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/forms/source/inc/limitedformats.hxx:45:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >
> --
> /home/noel/libo4/forms/source/inc/limitedformats.hxx:45:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >
> --
> /home/noel/libo4/vbahelper/source/vbahelper/vbahelper.cxx:101:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XIntrospection > xIntrospection;
> --
> /home/noel/libo4/vbahelper/source/vbahelper/vbahelper.cxx:113:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< script::XTypeConverter > xTypeConv( script::Converter::create(xContext) );
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/core/data/dptabsrc.cxx:1135:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/source/core/data/dptabsrc.cxx:1517:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/source/core/data/dptabsrc.cxx:2208:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/source/core/data/dptabsrc.cxx:2652:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/core/data/global.cxx:99:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> ScGlobal::xOrdinalSuffix = NULL;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/addruno.cxx:113:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(new SfxItemPropertySetInfo( aPropertyMap ));
> --
> /home/noel/libo4/sc/source/ui/unoobj/addruno.cxx:128:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(new SfxItemPropertySetInfo( aPropertyMap ));
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/afmtuno.cxx:181:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xInst((::cppu::OWeakObject*) new ScAutoFormatsObj);
> --
> /home/noel/libo4/sc/source/ui/unoobj/afmtuno.cxx:568:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef(new SfxItemPropertySetInfo( aPropSet.getPropertyMap() ));
> --
> /home/noel/libo4/sc/source/ui/unoobj/afmtuno.cxx:670:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef(new SfxItemPropertySetInfo( aPropSet.getPropertyMap() ));
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/appluno.cxx:317:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<uno::XInterface> xInst((cppu::OWeakObject*)new ScSpreadsheetSettings());
> --
> /home/noel/libo4/sc/source/ui/unoobj/appluno.cxx:356:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/appluno.cxx:605:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<uno::XInterface> xInst((cppu::OWeakObject*)new ScRecentFunctionsObj());
> --
> /home/noel/libo4/sc/source/ui/unoobj/appluno.cxx:682:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<uno::XInterface> xInst((cppu::OWeakObject*)new ScFunctionListObj());
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/confuno.cxx:115:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/chart2uno.cxx:2319:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/source/ui/unoobj/chart2uno.cxx:3460:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef =
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/defltuno.cxx:116:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef = new SfxItemPropertySetInfo(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:2132:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:5974:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:6670:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:8129:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:8756:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/cellsuno.cxx:8896:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/datauno.cxx:686:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/datauno.cxx:1446:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/datauno.cxx:2014:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/fmtuno.cxx:825:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/docuno.cxx:1642:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/docuno.cxx:3200:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/docuno.cxx:3419:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/linkuno.cxx:209:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/source/ui/unoobj/linkuno.cxx:755:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/funcuno.cxx:208:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xInst((::cppu::OWeakObject*) new ScFunctionAccess);
> --
> /home/noel/libo4/sc/source/ui/unoobj/funcuno.cxx:253:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/nameuno.cxx:377:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef(new SfxItemPropertySetInfo( lcl_GetNamedRangeMap() ));
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/srchuno.cxx:131:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/targuno.cxx:196:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef(new SfxItemPropertySetInfo( lcl_GetLinkTargetMap() ));
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/tokenuno.cxx:183:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef(new SfxItemPropertySetInfo( lcl_GetFormulaParserMap() ));
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/unoobj/viewuno.cxx:1799:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference<beans::XPropertySetInfo> aRef(
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/cui/source/inc/cfg.hxx:94:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference
> --
> /home/noel/libo4/cui/source/customize/cfg.cxx:841:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< css::ui::XImageManager>* SaveInData::xDefaultImgMgr = NULL;
> --
> /home/noel/libo4/cui/source/inc/cfg.hxx:94:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference
> --
> /home/noel/libo4/cui/source/inc/cfg.hxx:94:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/cui/source/inc/cfg.hxx:94:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/connectivity/sqlparse.hxx:167:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XLocaleData4> s_xLocaleData;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/writerfilter/source/ooxml/OOXMLStreamImpl.cxx:129:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< com::sun::star::uri::XUriReferenceFactory > xFac = ::com::sun::star::uri::UriReferenceFactory::create( mxContext );
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/inc/swthreadjoiner.hxx:34:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XJobManager > mpThreadJoiner;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/inc/swthreadjoiner.hxx:34:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XJobManager > mpThreadJoiner;
> --
> /home/noel/libo4/sw/source/core/docnode/swthreadjoiner.cxx:31:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< util::XJobManager > SwThreadJoiner::mpThreadJoiner;
> --
> /home/noel/libo4/sw/source/core/inc/swthreadjoiner.hxx:34:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::util::XJobManager > mpThreadJoiner;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/SwXTextDefaults.cxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference < XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unobkm.cxx:402:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef(
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unochart.cxx:2263:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRes = _pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoftn.cxx:504:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRet =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoframe.cxx:1294:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xFrmRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unoframe.cxx:1295:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xGrfRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unoframe.cxx:1296:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xOLERef;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoidx.cxx:2107:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfos[3];
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sw/source/core/unocore/unoobj.cxx:2140:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoparagraph.cxx:359:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sw/source/core/unocore/unoobj2.cxx:1335:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoport.cxx:219:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo >
> --
> /home/noel/libo4/sw/source/core/unocore/unoport.cxx:223:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo >
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unoredline.cxx:383:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unosect.cxx:494:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static const uno::Reference< beans::XPropertySetInfo > aRef =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unorefmk.cxx:447:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef =
> --
> /home/noel/libo4/sw/source/core/unocore/unorefmk.cxx:1396:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef(
> --
> /home/noel/libo4/sw/source/core/unocore/unorefmk.cxx:1519:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XComponentContext > xContext(
> --
> /home/noel/libo4/sw/source/core/unocore/unorefmk.cxx:1521:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< rdf::XURI > xOdfPrefix(
> --
> /home/noel/libo4/sw/source/core/unocore/unorefmk.cxx:1524:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< rdf::XURI > xOdfSuffix(
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unosett.cxx:307:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropertySet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unosett.cxx:609:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropertySet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unosett.cxx:835:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropertySet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unosett.cxx:2122:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropertySet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unosett.cxx:2469:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sw/source/core/unocore/unosrch.cxx:550:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > aRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1477:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xCharRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1487:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xCondParaRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1488:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xParaRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1501:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xPageRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1511:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xFrameRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:1521:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xNumRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:4514:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xCharRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:4524:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRubyRef;
> --
> /home/noel/libo4/sw/source/core/unocore/unostyle.cxx:4535:13: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xParaRef;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unotbl.cxx:1047:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unotbl.cxx:1351:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unotbl.cxx:1796:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unotbl.cxx:3073:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/core/unocore/unotbl.cxx:3907:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/core/unocore/unotext.cxx:1111:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xInfo =
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/uibase/uno/unoatxt.cxx:68:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< uno::XInterface > xAText = (cppu::OWeakObject*)new SwXAutoTextContainer();
> --
> /home/noel/libo4/sw/source/uibase/uno/unoatxt.cxx:612:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< beans::XPropertySetInfo > xRet = pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/uibase/uno/unotxvw.cxx:721:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< XPropertySetInfo > aRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/sw/source/uibase/uno/unotxvw.cxx:1486:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< XPropertySetInfo > xRef = m_pPropSet->getPropertySetInfo();
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/vba/excelvbahelper.cxx:113:9: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< sheet::XGlobalSheetSettings > xProps = sheet::GlobalSheetSettings::create( comphelper::getProcessComponentContext() );
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/source/ui/vba/vbaapplication.cxx:862:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< util::XPathSettings > xPathSettings;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sd/source/filter/eppt/pptx-text.cxx:53:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> com::sun::star::uno::Reference< com::sun::star::i18n::XBreakIterator > xPPTBreakIter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sw/source/ui/vba/vbaapplication.cxx:116:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< XCollection > xCol( new SwVbaAddins( this, mxContext ) );
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/qa/extras/sccondformats.cxx:43:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< lang::XComponent > mxComponent;
> --
> /home/noel/libo4/sc/qa/extras/sccondformats.cxx:47:1: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> uno::Reference< lang::XComponent > ScConditionalFormatTest::mxComponent;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/sc/inc/global.hxx:540:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XOrdinalSuffix> xOrdinalSuffix;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
> --
> /home/noel/libo4/basctl/source/dlged/dlgedfac.cxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static uno::Reference< lang::XMultiServiceFactory > xDialogSFact;
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:45:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:47:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:49:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:51:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:53:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:55:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:58:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/unolingu.hxx:60:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static ::com::sun::star::uno::Reference<
> --
> /home/noel/libo4/include/editeng/numitem.hxx:65:5: warning: UNO references should not be declared as global variables [loplugin:staticunovars]
> static com::sun::star::uno::Reference<com::sun::star::text::XNumberingFormatter> xFormatter;
More information about the LibreOffice
mailing list