summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2001-12-04 14:26:43 +0000
committerStephan Bergmann <sb@openoffice.org>2001-12-04 14:26:43 +0000
commitc995a7aa6935f5adc79f8e4727b7e5ac78e413a8 (patch)
treef9b6c8e751cb6bfb6dfc89b47a797336158b947a
parent7dc591561994d0944e5c0199f275885317f6e3ef (diff)
#94448# Fixed KeyCode::GetName's REMOTE_APPSERVER case.
-rw-r--r--vcl/source/window/keycod.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/keycod.cxx b/vcl/source/window/keycod.cxx
index 34d5a997648e..cb1b8feb553a 100644
--- a/vcl/source/window/keycod.cxx
+++ b/vcl/source/window/keycod.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: keycod.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:05:40 $
+ * last change: $Author: sb $ $Date: 2001-12-04 15:26:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -230,7 +230,7 @@ XubString KeyCode::GetName( Window* pWindow ) const
}
else
{
- String* pName = pSVData->mpKeyNames->Get( GetFullCode() );
+ String* pName = pSVData->mpKeyNames->Get( nCode );
if ( pName )
aName += *pName;
}