summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-09-02 11:10:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-09-02 17:02:39 +0200
commit205f141a638a1906fd561629821293938385d5d3 (patch)
tree796a6f3c9ba67ebabaa12aec3cbb515a4cb3bece /include
parent8346af902491ef3c77ec614ce6c26782f4f37712 (diff)
we only need an OutputDevice here, not a Window
Change-Id: I2ba8f61b8dc8570677f3a8f955e3a2cd9bfcd98c Reviewed-on: https://gerrit.libreoffice.org/78391 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/unoshtxt.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/unoshtxt.hxx b/include/svx/unoshtxt.hxx
index 9acd57f6172c..33ba30d58d6e 100644
--- a/include/svx/unoshtxt.hxx
+++ b/include/svx/unoshtxt.hxx
@@ -37,7 +37,7 @@ class SvxTextForwarder;
class SdrObject;
class SdrModel;
class SdrView;
-namespace vcl { class Window; }
+class OutputDevice;
class SvxTextEditSourceImpl;
class SdrText;
@@ -51,7 +51,7 @@ public:
The window is necessary, since our views can display on multiple windows
*/
- SvxTextEditSource( SdrObject& rObj, SdrText* pText, SdrView& rView, const vcl::Window& rViewWindow );
+ SvxTextEditSource( SdrObject& rObj, SdrText* pText, SdrView& rView, const OutputDevice& rViewWindow );
SvxTextEditSource(const SvxTextEditSource&) = delete;
SvxTextEditSource& operator=(const SvxTextEditSource&) = delete;
virtual ~SvxTextEditSource() override;