diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-29 12:06:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-29 12:07:36 +0200 |
commit | 66a88dc17e91d03a130b21a511ce298dd5a52e12 (patch) | |
tree | 51d837b95391d760f815e576a1a9cc8888674a4b /registry/inc | |
parent | 633cbb4954a2469f3c8911fbdffcaa4340ca6ac9 (diff) |
UNO BYTE is signed
This is hopefully a better fix for c589fa17b8f3e6ded0d1e04120781eb5d6735bc7
"Dalvik enforces byte constants being in range (-128..127)."
Diffstat (limited to 'registry/inc')
-rw-r--r-- | registry/inc/registry/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/inc/registry/types.h b/registry/inc/registry/types.h index cee37bb24001..77ae249925fd 100644 --- a/registry/inc/registry/types.h +++ b/registry/inc/registry/types.h @@ -218,7 +218,7 @@ enum RTValueType { */ union RTConstValueUnion { sal_Bool aBool; - sal_uInt8 aByte; + sal_Int8 aByte; sal_Int16 aShort; sal_uInt16 aUShort; sal_Int32 aLong; |