diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-03 12:16:22 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-04 19:15:24 -0400 |
commit | f6ec66727379fef56f0972e2a6181e39ab6d4ec1 (patch) | |
tree | 63af7afdc956067f1126efbc3d2cd3d1f1d8c3d7 /include/editeng/editobj.hxx | |
parent | 4aa411674224edb5eedd8d6170e8b27c491df851 (diff) |
Add methods to extract string IDs from edit text object.
Note that a single edit text object may have multiple string ID's in case
it consists of multiple paragraphs.
Change-Id: Ie90541de38a639c30a010817dada389e9445d08c
Diffstat (limited to 'include/editeng/editobj.hxx')
-rw-r--r-- | include/editeng/editobj.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/editeng/editobj.hxx b/include/editeng/editobj.hxx index 36392e213e6c..4751469c68ec 100644 --- a/include/editeng/editobj.hxx +++ b/include/editeng/editobj.hxx @@ -85,6 +85,9 @@ public: */ void NormalizeString( svl::StringPool& rPool ); + bool GetStringIDs( const svl::StringPool& rPool, std::vector<sal_uIntPtr>& rIDs ) const; + bool GetStringIDsIgnoreCase( const svl::StringPool& rPool, std::vector<sal_uIntPtr>& rIDs ) const; + const SfxItemPool* GetPool() const; sal_uInt16 GetUserType() const; // For OutlinerMode, it can however not save in compatible format void SetUserType( sal_uInt16 n ); |