summaryrefslogtreecommitdiff
path: root/vcl/source/window/keycod.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-07-31 14:50:42 +0200
committerNoel Grandin <noel@peralex.com>2013-07-31 15:29:14 +0200
commit219534a029536861fce2413c34afedc98fde60e4 (patch)
tree5879a2e7224d00f864aa53793df57c2b5252a9a4 /vcl/source/window/keycod.cxx
parent78c5a2ce8c2d4967d954fceaf9b7707ec56a3d7b (diff)
convert vcl/keycod.hxx from XubString to OUString
Change-Id: I112979676926bf202213174bddfa2adcffc5249f
Diffstat (limited to 'vcl/source/window/keycod.cxx')
-rw-r--r--vcl/source/window/keycod.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/keycod.cxx b/vcl/source/window/keycod.cxx
index 07516973a193..df81d987cc73 100644
--- a/vcl/source/window/keycod.cxx
+++ b/vcl/source/window/keycod.cxx
@@ -101,11 +101,11 @@ KeyCode::KeyCode( const ResId& rResId )
// -----------------------------------------------------------------------
-XubString KeyCode::GetName( Window* pWindow ) const
+OUString KeyCode::GetName( Window* pWindow ) const
{
if ( !pWindow )
pWindow = ImplGetDefaultWindow();
- return pWindow ? XubString( pWindow->ImplGetFrame()->GetKeyName( GetFullCode() ) ) : XubString();
+ return pWindow ? pWindow->ImplGetFrame()->GetKeyName( GetFullCode() ) : "";
}
// -----------------------------------------------------------------------