From 1b62841b1859ae3443e2bf1ebe99ec3d6afb6cc2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 19 Oct 2015 12:51:29 +0200 Subject: com::sun::star->css in include/comphelper Change-Id: Ice569b724732da1fd67a18a4ccf2f92f530cd689 Reviewed-on: https://gerrit.libreoffice.org/19459 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/comphelper/container.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/comphelper/container.hxx') diff --git a/include/comphelper/container.hxx b/include/comphelper/container.hxx index a559a7326e20..376406734935 100644 --- a/include/comphelper/container.hxx +++ b/include/comphelper/container.hxx @@ -37,11 +37,11 @@ namespace comphelper class COMPHELPER_DLLPUBLIC IndexAccessIterator { protected: - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> m_xStartingPoint; + css::uno::Reference< css::uno::XInterface> m_xStartingPoint; - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> m_xCurrentObject; + css::uno::Reference< css::uno::XInterface> m_xCurrentObject; // The current object - ::std::vector m_arrChildIndizies; + ::std::vector m_arrChildIndizies; // I'm moving through a tree, but its elements have no GetNextSibling, // so I have to remember where each child is in relation to its parent. @@ -51,23 +51,23 @@ protected: // The Name of the requested property public: - IndexAccessIterator(::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> xStartingPoint); + IndexAccessIterator(css::uno::Reference< css::uno::XInterface> xStartingPoint); virtual ~IndexAccessIterator(); - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> Next(); + css::uno::Reference< css::uno::XInterface> Next(); virtual void Invalidate() { m_xCurrentObject = NULL; } protected: - virtual bool ShouldHandleElement(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*rElement*/) { return true; } + virtual bool ShouldHandleElement(const css::uno::Reference< css::uno::XInterface>& /*rElement*/) { return true; } // This can be used to exclude certain elements; elements for which // this function returns sal_True will be simply skipped. // If this element is returned from Next(), then one can get // here get a little more information on the element. // That's why this method is not const. - virtual bool ShouldStepInto(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*xContainer*/) const { return true; } + virtual bool ShouldStepInto(const css::uno::Reference< css::uno::XInterface>& /*xContainer*/) const { return true; } }; -- cgit