summaryrefslogtreecommitdiff
path: root/vcl/source/edit/textview.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/edit/textview.cxx')
-rw-r--r--vcl/source/edit/textview.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/edit/textview.cxx b/vcl/source/edit/textview.cxx
index d63620d40016..c2b7fadb2771 100644
--- a/vcl/source/edit/textview.cxx
+++ b/vcl/source/edit/textview.cxx
@@ -146,7 +146,7 @@ struct ImpTextView
{
TextEngine* mpTextEngine;
- Window* mpWindow;
+ vcl::Window* mpWindow;
TextSelection maSelection;
Point maStartDocPos;
// TextPaM maMBDownPaM;
@@ -176,7 +176,7 @@ struct ImpTextView
bool mbCursorAtEndOfLine;
};
-TextView::TextView( TextEngine* pEng, Window* pWindow ) :
+TextView::TextView( TextEngine* pEng, vcl::Window* pWindow ) :
mpImpl(new ImpTextView)
{
pWindow->EnableRTL( false );
@@ -2309,7 +2309,7 @@ void TextSelFunctionSet::DestroyAnchor()
}
TextEngine* TextView::GetTextEngine() const
{ return mpImpl->mpTextEngine; }
-Window* TextView::GetWindow() const
+vcl::Window* TextView::GetWindow() const
{ return mpImpl->mpWindow; }
void TextView::EnableCursor( bool bEnable )
{ mpImpl->mbCursorEnabled = bEnable; }