diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-29 08:41:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-29 14:15:43 +0200 |
commit | d15ca2d89114b5e6636bc8646871e1333fcb54fa (patch) | |
tree | 63057bdc79dfdbc5fc8ca0fa3849c615267553a2 /vcl/inc | |
parent | 6dae1199db417bb374c04e635b6bce0b382ea830 (diff) |
convert XubString->OUString in vcl/window.hxx
Change-Id: I556ad2df5cf1fb29aefb70a61a034d40a10340b1
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/window.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/inc/window.h b/vcl/inc/window.h index 230e1b07d068..092417b554d0 100644 --- a/vcl/inc/window.h +++ b/vcl/inc/window.h @@ -209,8 +209,8 @@ struct ImplFrameData struct ImplAccessibleInfos { sal_uInt16 nAccessibleRole; - String* pAccessibleName; - String* pAccessibleDescription; + OUString* pAccessibleName; + OUString* pAccessibleDescription; Window* pLabeledByWindow; Window* pLabelForWindow; Window* pMemberOfWindow; @@ -263,7 +263,7 @@ public: Cursor* mpCursor; Pointer maPointer; Fraction maZoom; - XubString maText; + OUString maText; Font* mpControlFont; Color maControlForeground; Color maControlBackground; @@ -277,10 +277,10 @@ public: long mnY; long mnAbsScreenX; Point maPos; - OString maHelpId; - OString maUniqId; - XubString maHelpText; - XubString maQuickHelpText; + OString maHelpId; + OString maUniqId; + OUString maHelpText; + OUString maQuickHelpText; InputContext maInputContext; ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > mxWindowPeer; ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > mxAccessible; |