diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/svxacorr.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx index df6a3214792b..708c25adb52a 100644 --- a/include/editeng/svxacorr.hxx +++ b/include/editeng/svxacorr.hxx @@ -80,6 +80,13 @@ namespace o3tl { template<> struct typed_flags<ACFlags> : is_typed_flags<ACFlags, 0xe0003fff> {}; } +enum class ACQuotes +{ + NONE, + NonBreakingSpace, + CapitalizeIAm, +}; + // TODO: handle code points > U+FFFF and check users of this class // only a mapping class @@ -324,7 +331,8 @@ public: OUString GetQuote( SvxAutoCorrDoc const & rDoc, sal_Int32 nInsPos, sal_Unicode cInsChar, bool bSttQuote ); void InsertQuote( SvxAutoCorrDoc& rDoc, sal_Int32 nInsPos, - sal_Unicode cInsChar, bool bSttQuote, bool bIns, bool b_iApostrophe ) const; + sal_Unicode cInsChar, bool bSttQuote, bool bIns, + LanguageType eLang, ACQuotes eType ) const; // Query/Set the name of the AutoCorrect file // the default is "autocorr.dat" |