From af6cd2356afd1212acc529f796f8043ad7e278e6 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 4 Feb 2015 20:46:57 +0000 Subject: rename MenuConfiguration::Attributes->MenuAttributes Change-Id: I2ada1394c4cbee7c27b02f241ee4a254597a5dd8 --- framework/source/fwe/xml/menuconfiguration.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'framework/source/fwe/xml/menuconfiguration.cxx') diff --git a/framework/source/fwe/xml/menuconfiguration.cxx b/framework/source/fwe/xml/menuconfiguration.cxx index aabbc47b9751..1d2a8dd78cac 100644 --- a/framework/source/fwe/xml/menuconfiguration.cxx +++ b/framework/source/fwe/xml/menuconfiguration.cxx @@ -139,25 +139,25 @@ void MenuConfiguration::StoreMenuBarConfigurationToXML( } } -sal_uIntPtr MenuConfiguration::Attributes::CreateAttribute(const OUString& rFrame, const OUString& rImageIdStr) +sal_uIntPtr MenuAttributes::CreateAttribute(const OUString& rFrame, const OUString& rImageIdStr) { - Attributes* pAttributes = new Attributes(rFrame, rImageIdStr); + MenuAttributes* pAttributes = new MenuAttributes(rFrame, rImageIdStr); pAttributes->acquire(); return reinterpret_cast(pAttributes); } -sal_uIntPtr MenuConfiguration::Attributes::CreateAttribute(const css::uno::WeakReference& rDispatchProvider) +sal_uIntPtr MenuAttributes::CreateAttribute(const css::uno::WeakReference& rDispatchProvider) { - Attributes* pAttributes = new Attributes(rDispatchProvider); + MenuAttributes* pAttributes = new MenuAttributes(rDispatchProvider); pAttributes->acquire(); return reinterpret_cast(pAttributes); } -void MenuConfiguration::Attributes::ReleaseAttribute(sal_uIntPtr nAttributePtr) +void MenuAttributes::ReleaseAttribute(sal_uIntPtr nAttributePtr) { if (!nAttributePtr) return; - Attributes* pAttributes = reinterpret_cast(nAttributePtr); + MenuAttributes* pAttributes = reinterpret_cast(nAttributePtr); pAttributes->release(); } -- cgit v1.2.3