summaryrefslogtreecommitdiff
path: root/framework/inc/stdtypes.h
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-18 14:40:52 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-18 14:40:52 +0000
commit7cbcbba18a63060636fc423727247c11af6eb30a (patch)
tree1be9d91d413bc379bfb8d82896207ffbfddad1b0 /framework/inc/stdtypes.h
parent45620a94315425bbb881e8b4a7673de1b096186d (diff)
INTEGRATION: CWS fwkbugfix04 (1.6.64); FILE MERGED
2004/12/20 13:45:29 as 1.6.64.1: #i39336# ignore KeyChar and KeyFunc for searching keys inside config
Diffstat (limited to 'framework/inc/stdtypes.h')
-rw-r--r--framework/inc/stdtypes.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/stdtypes.h b/framework/inc/stdtypes.h
index d4c38d6bf24d..6b1b3bd6605a 100644
--- a/framework/inc/stdtypes.h
+++ b/framework/inc/stdtypes.h
@@ -2,9 +2,9 @@
*
* $RCSfile: stdtypes.h,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2004-09-20 10:03:43 $
+ * last change: $Author: kz $ $Date: 2005-01-18 15:40:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -131,8 +131,8 @@ struct KeyEventHashCode
size_t operator()( const css::awt::KeyEvent& aEvent ) const
{
return (size_t)(aEvent.KeyCode +
- aEvent.KeyChar +
- aEvent.KeyFunc +
+ //aEvent.KeyChar +
+ //aEvent.KeyFunc +
aEvent.Modifiers);
}
};
@@ -144,8 +144,8 @@ struct KeyEventEqualsFunc
{
return (
(aKey1.KeyCode == aKey2.KeyCode ) &&
- (aKey1.KeyChar == aKey2.KeyChar ) &&
- (aKey1.KeyFunc == aKey2.KeyFunc ) &&
+ //(aKey1.KeyChar == aKey2.KeyChar ) &&
+ //(aKey1.KeyFunc == aKey2.KeyFunc ) &&
(aKey1.Modifiers == aKey2.Modifiers)
);
}