diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-30 09:40:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-30 16:58:19 +0100 |
commit | d465d5b1cc962f56534d685fe8af5f26083fb7ba (patch) | |
tree | c709eb4025e46325ce0f3c3595eb27cf2b178085 /sfx2/inc | |
parent | 39759e85d9931ba9dcee04bb4010c51d729b7ecf (diff) |
can avoid intermediate vcl::Window use
Change-Id: I51d1a84fdf7a8c7d204691d52dec10db051c3b00
Reviewed-on: https://gerrit.libreoffice.org/81745
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/guisaveas.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/inc/guisaveas.hxx b/sfx2/inc/guisaveas.hxx index ac9df75aea61..5e7355709680 100644 --- a/sfx2/inc/guisaveas.hxx +++ b/sfx2/inc/guisaveas.hxx @@ -37,7 +37,7 @@ namespace com { namespace sun { namespace star { } } } } -namespace vcl { class Window; } +namespace weld { class Window; } class ModelData_Impl; class SfxStoringHelper @@ -79,7 +79,7 @@ public: bool rDefaultIsAlien ); static css::uno::Reference<css::awt::XWindow> GetModelXWindow(const css::uno::Reference<css::frame::XModel>& rModel); - static vcl::Window* GetModelWindow( const css::uno::Reference< css::frame::XModel >& xModel ); + static weld::Window* GetModelWindow( const css::uno::Reference< css::frame::XModel >& xModel ); }; |