summaryrefslogtreecommitdiffstats
path: root/registry/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-03-29 12:06:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-03-29 12:07:36 +0200
commit66a88dc17e91d03a130b21a511ce298dd5a52e12 (patch)
tree51d837b95391d760f815e576a1a9cc8888674a4b /registry/inc
parentfix last commit (diff)
downloadcore-66a88dc17e91d03a130b21a511ce298dd5a52e12.tar.gz
core-66a88dc17e91d03a130b21a511ce298dd5a52e12.zip
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.h2
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;