diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-04 14:28:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-04 14:37:54 +0200 |
commit | e03211460a2d2451135527107c7ddbd2e93acba9 (patch) | |
tree | 20aa197773b8cae9f23f210caf1e982d2e181bfe /udkapi/com | |
parent | 2618ff47344e423470ab60c5e034d30163b3f29b (diff) |
[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
Diffstat (limited to 'udkapi/com')
-rw-r--r-- | udkapi/com/sun/star/uno/Uik.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/udkapi/com/sun/star/uno/Uik.idl b/udkapi/com/sun/star/uno/Uik.idl index f3a6358fab14..82f6a7aa4c66 100644 --- a/udkapi/com/sun/star/uno/Uik.idl +++ b/udkapi/com/sun/star/uno/Uik.idl @@ -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; }; |