Kaydet (Commit) 6412ebe5 authored tarafından Robert Antoni Buj i Gelonch's avatar Robert Antoni Buj i Gelonch Kaydeden (comit) Noel Grandin

accessibility: shift by zero

Change-Id: I4e25b0a6929cc88aa2ec1d213b8f1115de6be607
Reviewed-on: https://gerrit.libreoffice.org/12146Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 5d8ecad5
......@@ -92,7 +92,7 @@ class AccessibleComponentHandler
aChild = new StringNode ("Foreground color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)
+ "B" + (nColor&0xff)
+ "A" + (nColor>>24&0xff),
aParent);
break;
......@@ -101,7 +101,7 @@ class AccessibleComponentHandler
aChild = new StringNode ("Background color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)
+ "B" + (nColor&0xff)
+ "A" + (nColor>>24&0xff),
aParent);
break;
......
......@@ -72,7 +72,7 @@ class AccessibleExtendedComponentHandler
aChild = new StringNode ("Deprecated Foreground color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)
+ "B" + (nColor&0xff)
+ "A" + (nColor>>24&0xff),
aParent);
break;
......@@ -81,7 +81,7 @@ class AccessibleExtendedComponentHandler
aChild = new StringNode ("Deprecated Background color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)
+ "B" + (nColor&0xff)
+ "A" + (nColor>>24&0xff),
aParent);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment