diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-06 15:49:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-12 11:56:43 +0200 |
commit | ed55bea114561e3fbcbd472964527ccddcb34af2 (patch) | |
tree | 6ff83d91b8ff7880ae36da498b0b53d98a219bc9 /include/vcl/quickselectionengine.hxx | |
parent | 4c3cfe059057f403de3de8889ddead963e4b6952 (diff) |
convert vcl mnemonicengine.hxx and quickselectionengine.hxx
.. from String to OUString.
These 2 API's are tied together, necessitating their conversion in
one step.
Change-Id: Ibcc05d8d3617253adf49edb4a244542d32b38224
Diffstat (limited to 'include/vcl/quickselectionengine.hxx')
-rw-r--r-- | include/vcl/quickselectionengine.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/quickselectionengine.hxx b/include/vcl/quickselectionengine.hxx index 631f0c40aa95..3bfa7a9e34d4 100644 --- a/include/vcl/quickselectionengine.hxx +++ b/include/vcl/quickselectionengine.hxx @@ -46,14 +46,14 @@ namespace vcl Search operations will start with this entry. */ - virtual StringEntryIdentifier CurrentEntry( String& _out_entryText ) const = 0; + virtual StringEntryIdentifier CurrentEntry( OUString& _out_entryText ) const = 0; /** returns the next entry in the list. The implementation is expected to wrap around. That is, if the given entry denotes the last entry in the list, then NextEntry should return the first entry. */ - virtual StringEntryIdentifier NextEntry( StringEntryIdentifier _currentEntry, String& _out_entryText ) const = 0; + virtual StringEntryIdentifier NextEntry( StringEntryIdentifier _currentEntry, OUString& _out_entryText ) const = 0; /** selects a given entry */ |