diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-05 17:47:14 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-18 19:57:22 -0600 |
commit | ead89ae2019b0533306d7b485ddcc71c57362599 (patch) | |
tree | bc879c17b840914dc09c54e66bb857e64d1bb7c0 /svl/inc | |
parent | a7455a4a79f3be532b6a9cbbfb6bc00d86636902 (diff) |
svl: convert KeywordTable to OUString
Change-Id: I93daafcb6cc161f10ec87fe9f1dc877e2154299d
Diffstat (limited to 'svl/inc')
-rw-r--r-- | svl/inc/svl/nfkeytab.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/inc/svl/nfkeytab.hxx b/svl/inc/svl/nfkeytab.hxx index 631f869e53d8..fdedea036d00 100644 --- a/svl/inc/svl/nfkeytab.hxx +++ b/svl/inc/svl/nfkeytab.hxx @@ -106,15 +106,15 @@ enum NfKeywordIndex class NfKeywordTable { - typedef ::std::vector<String> Keywords_t; + typedef ::std::vector<OUString> Keywords_t; Keywords_t m_keywords; public: NfKeywordTable() : m_keywords(NF_KEYWORD_ENTRIES_COUNT) {}; virtual ~NfKeywordTable() {} - String & operator[] (Keywords_t::size_type n) { return m_keywords[n]; } - const String & operator[] (Keywords_t::size_type n) const { return m_keywords[n]; } + OUString & operator[] (Keywords_t::size_type n) { return m_keywords[n]; } + const OUString & operator[] (Keywords_t::size_type n) const { return m_keywords[n]; } }; #endif // INCLUDED_SVTOOLS_NFKEYTAB_HXX |