diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-07-13 22:01:00 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-07-16 09:52:05 +0200 |
commit | c2a73a4780dbab2abdfb4654ddc2bf1356127eb0 (patch) | |
tree | fb158296a7ec1c8a46219c2595ac282e7a2f3672 /xmloff/inc | |
parent | 6b919e03880195000716efdf8ce6a47a04664a25 (diff) |
xmloff: implement import/export of SwPostItField::aInitials
Change-Id: Ie28e8e4c2e80d9234cf1ec2ca43dd200cf1d56cb
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/txtflde.hxx | 1 | ||||
-rw-r--r-- | xmloff/inc/txtfldi.hxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/xmloff/inc/txtflde.hxx b/xmloff/inc/txtflde.hxx index 6f85f9eca69f..771ca6c0a945 100644 --- a/xmloff/inc/txtflde.hxx +++ b/xmloff/inc/txtflde.hxx @@ -479,6 +479,7 @@ private: const ::rtl::OUString sPropertyFileFormat; const ::rtl::OUString sPropertyFullName; const ::rtl::OUString sPropertyHint; + const ::rtl::OUString sPropertyInitials; const ::rtl::OUString sPropertyInstanceName; const ::rtl::OUString sPropertyIsAutomaticUpdate; const ::rtl::OUString sPropertyIsConditionTrue; diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx index 02ac73d272d8..7c0e6e605393 100644 --- a/xmloff/inc/txtfldi.hxx +++ b/xmloff/inc/txtfldi.hxx @@ -1341,11 +1341,13 @@ protected: class XMLAnnotationImportContext : public XMLTextFieldImportContext { const ::rtl::OUString sPropertyAuthor; + const ::rtl::OUString sPropertyInitials; const ::rtl::OUString sPropertyContent; const ::rtl::OUString sPropertyDate; const ::rtl::OUString sPropertyTextRange; ::rtl::OUStringBuffer aAuthorBuffer; + ::rtl::OUStringBuffer aInitialsBuffer; ::rtl::OUStringBuffer aTextBuffer; ::rtl::OUStringBuffer aDateBuffer; |