summaryrefslogtreecommitdiff
path: root/include/dbaccess/dataview.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-20 11:11:25 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-21 06:37:03 +0000
commit59a601d1de038b9a3807c650142cd78e31f421c8 (patch)
tree25418433b99cb4530e4c3693b70d2d4b02ae6681 /include/dbaccess/dataview.hxx
parent08233bd25849cc7d5d092aa073362c7766cbcc19 (diff)
com::sun::star->css in include/dbaccess
Change-Id: I90202b5a537cb64f4ddae3141e19270a93c5b6e0 Reviewed-on: https://gerrit.libreoffice.org/19487 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/dbaccess/dataview.hxx')
-rw-r--r--include/dbaccess/dataview.hxx8
1 files changed, 4 insertions, 4 deletions
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<IController> 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;