From 59a601d1de038b9a3807c650142cd78e31f421c8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 20 Oct 2015 11:11:25 +0200 Subject: com::sun::star->css in include/dbaccess Change-Id: I90202b5a537cb64f4ddae3141e19270a93c5b6e0 Reviewed-on: https://gerrit.libreoffice.org/19487 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- include/dbaccess/dataview.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/dbaccess/dataview.hxx') diff --git a/include/dbaccess/dataview.hxx b/include/dbaccess/dataview.hxx index 76aaacbce15b..b73831c9f33a 100644 --- a/include/dbaccess/dataview.hxx +++ b/include/dbaccess/dataview.hxx @@ -34,7 +34,7 @@ namespace dbaui class IController; class DBACCESS_DLLPUBLIC ODataView : public vcl::Window { - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; // the service factory to work with + css::uno::Reference< css::uno::XComponentContext > m_xContext; // the service factory to work with protected: rtl::Reference m_xController; // the controller in where we resides in @@ -44,7 +44,7 @@ namespace dbaui public: ODataView( vcl::Window* pParent, IController& _rController, - const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& , + const css::uno::Reference< css::uno::XComponentContext >& , WinBits nStyle = 0 ); virtual ~ODataView(); virtual void dispose() override; @@ -60,12 +60,12 @@ namespace dbaui inline IController& getCommandController() const { return *m_xController.get(); } - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > getORB() { return m_xContext;} + css::uno::Reference< css::uno::XComponentContext > getORB() { return m_xContext;} // the default implementation simply calls resizeAll( GetSizePixel() ) virtual void Resize() override; - void attachFrame(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _xFrame); + void attachFrame(const css::uno::Reference< css::frame::XFrame >& _xFrame); protected: // window overridables virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& _rRect ) override; -- cgit