From 5c74680a377f6f55b136b2ab406b1608a215f432 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 21 Nov 2012 20:55:10 +0000 Subject: use MNEMONIC_CHAR define Change-Id: I824bd1ad981e0b37e273a054e2a64cb500776180 --- vcl/source/window/window2.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vcl/source') diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index be8c8baf5056..c0d013d9c518 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -28,6 +28,7 @@ #include #include #include +#include #include #include #include @@ -1967,7 +1968,7 @@ namespace if (aRet[nI] == '_') { if (aRet[nI+1] != '_') - aRet[nI] = '~'; + aRet[nI] = MNEMONIC_CHAR; else aRet.remove(nI, 1); ++nI; -- cgit