summaryrefslogtreecommitdiffstats
path: root/i18npool
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-21 19:00:26 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-21 19:42:57 +0100
commit9486dd0692e08b3770bee8f3be2292263c6e5d26 (patch)
treef41fa78dbd7fa8c0f639fe6ccd03fda15262e971 /i18npool
parentstarmath: fix OOXML export of non-BMP Unicode (diff)
downloadcore-9486dd0692e08b3770bee8f3be2292263c6e5d26.tar.gz
core-9486dd0692e08b3770bee8f3be2292263c6e5d26.zip
i18npool: why not document the state transitions
Change-Id: Ica5789dab22a49efb9e2da3a795e13aa7e2c4339
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/inc/cclass_unicode.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/i18npool/inc/cclass_unicode.hxx b/i18npool/inc/cclass_unicode.hxx
index e88530a92e41..cbcb6f9baaa7 100644
--- a/i18npool/inc/cclass_unicode.hxx
+++ b/i18npool/inc/cclass_unicode.hxx
@@ -75,16 +75,16 @@ private:
enum ScanState
{
- ssGetChar,
- ssGetValue,
- ssGetWord,
- ssGetWordFirstChar,
- ssGetString,
- ssGetBool,
- ssRewindFromValue,
- ssIgnoreLeadingInRewind,
- ssStopBack,
- ssBounce,
+ ssGetChar, // initial state; -> ssBounce, ssGetValue, ssRewindFromValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop
+ ssGetValue, // -> ssBounce, ssRewindFromValue, ssStopBack, ssGetWord
+ ssGetWord, // -> ssBounce, ssStop, ssStopBack
+ ssGetWordFirstChar, // -> ssBounce, ssGetWord, ssStop, ssStopBack
+ ssGetString, // -> ssBounce, ssStop
+ ssGetBool, // -> ssBounce, ssStop, ssStopBack
+ ssRewindFromValue, // -> ssBounce, ssGetValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop, ssIgnoreLeadingInRewind
+ ssIgnoreLeadingInRewind, // -> ssBounce, ssGetValue, ssRewindFromValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop
+ ssStopBack, // -> ssStop
+ ssBounce, // -> ssStopBack
ssStop
};