Kaydet (Commit) e0321146 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

[API CHANGE] Fix deprecated struct css.uno.Uik member identifiers

UNOIDL identifiers starting with a lowercase letter and containing hyphens are
reserved for the implementation.  It would be good to be able to enforce that in
code parsing UNOIDL files, but some existing identifiers violate that.

In the case of the published, deprecated css.uno.Uik, the change is incompatible
in theory but arguably irrelevant in practice.

Change-Id: I61f66e2d73c6aca5498ae566758893b546eb81d5
üst 2618ff47
......@@ -32,23 +32,23 @@ published struct Uik
{
/** specifies a 4 byte data block.
*/
unsigned long m_Data1;
unsigned long Data1;
/** specifies a 2 byte data block.
*/
unsigned short m_Data2;
unsigned short Data2;
/** specifies a 2 byte data block.
*/
unsigned short m_Data3;
unsigned short Data3;
/** specifies a 4 byte data block.
*/
unsigned long m_Data4;
unsigned long Data4;
/** specifies a 4 byte data block.
*/
unsigned long m_Data5;
unsigned long Data5;
};
......
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