diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 17:41:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:05 +0100 |
commit | a34986a76dd19536410b70f999108eb67d1443c3 (patch) | |
tree | ffecc47df95e68684912657ff3d326a9aae4d6f8 /include | |
parent | e58704ff8142a937fe156048979e8a0dc1e8b460 (diff) |
Remove unnecessary typedef (that introduced a reserved identifier)
Change-Id: Id7ab1345869d09b079cceae2095447e8851337d1
Diffstat (limited to 'include')
-rw-r--r-- | include/i18nutil/unicode.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/i18nutil/unicode.hxx b/include/i18nutil/unicode.hxx index 6265d1aa4096..034b85e44ad3 100644 --- a/include/i18nutil/unicode.hxx +++ b/include/i18nutil/unicode.hxx @@ -27,11 +27,11 @@ class LanguageTag; -typedef struct _ScriptTypeList { +struct ScriptTypeList { sal_Int16 from; sal_Int16 to; sal_Int16 value; -} ScriptTypeList; +}; class I18NUTIL_DLLPUBLIC unicode { |