diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-20 21:15:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-22 12:48:27 +0100 |
commit | ae167f81e68fc05693f195fa9a680071b741dcbf (patch) | |
tree | 53f45162b52ce74e708b909a85d3616a9b6cf87a /vcl/source/window | |
parent | a22a7923c05df85a1f9c9435754c5feda66ce576 (diff) |
convert GetSurroundingText family to OUString
Change-Id: Ifbb21fc26eedfde4afe2e3faf637346554f63d94
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/window.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index a71dda23c1e3..ee6c4a5290ab 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -9579,9 +9579,9 @@ void Window::PaintToDevice( OutputDevice* pDev, const Point& rPos, const Size& / SetParent( pRealParent ); } -XubString Window::GetSurroundingText() const +rtl::OUString Window::GetSurroundingText() const { - return XubString::EmptyString(); + return rtl::OUString(); } Selection Window::GetSurroundingTextSelection() const |