diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 14:20:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:46 +0200 |
commit | 1e7632abaa3f4c8fd83f7052b95dc88eac3d3626 (patch) | |
tree | 595a232507bc0b0a7a16a51c0326bdbf05e4aa61 /include | |
parent | 202a08e37df62f5588e5a5b726520bbb86f36ed3 (diff) |
convert include/svx/fmsearch.hxx from String to OUString
Change-Id: I167e5e5a54d9fbf9394c7f81484a20f460465c8d
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/fmsearch.hxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/svx/fmsearch.hxx b/include/svx/fmsearch.hxx index 2cd75167ea05..5edd213026e7 100644 --- a/include/svx/fmsearch.hxx +++ b/include/svx/fmsearch.hxx @@ -63,13 +63,14 @@ struct FmFoundRecordInformation struct FmSearchContext { // [in] - sal_Int16 nContext; // the number of the context + sal_Int16 nContext; // the number of the context // [out] - ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet> xCursor; // the iterator for the context - String strUsedFields; // a list of field names separeted by ';' - ::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > > + css::uno::Reference< css::sdbc::XResultSet> + xCursor; // the iterator for the context + OUString strUsedFields; // a list of field names separeted by ';' + ::std::vector< css::uno::Reference< css::uno::XInterface > > arrFields; // the corresponding text interfaces for the fields in strUsedFields - String sFieldDisplayNames; // if not empty : names to be displayed for the searchable fields (must have the same token count as strUsedFields !) + OUString sFieldDisplayNames; // if not empty : names to be displayed for the searchable fields (must have the same token count as strUsedFields !) }; #endif // _FMSEARCH_HXX |