diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-08-31 22:46:59 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-09-05 22:10:59 +0000 |
commit | 72fa23ba0e13e6cf8a7ffb0476863d4399af0da1 (patch) | |
tree | 551c13c20bad963eef0af4500932e784129ad30b /xmlhelp/source/cxxhelp/inc/qe | |
parent | 79874397bbc891939ebd402a4af85fa1406604fd (diff) |
kill RTL_CONSTASCII_USTRINGPARAM in xmlhelp
+ ::rtl:: drop
(only on rebased files)
Change-Id: I5a773936ceb012b0655cee8db7250b496e088464
Reviewed-on: https://gerrit.libreoffice.org/525
Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br>
Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'xmlhelp/source/cxxhelp/inc/qe')
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/qe/Query.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/qe/Query.hxx b/xmlhelp/source/cxxhelp/inc/qe/Query.hxx index b34fa76668a1..d5628f39f3ce 100644 --- a/xmlhelp/source/cxxhelp/inc/qe/Query.hxx +++ b/xmlhelp/source/cxxhelp/inc/qe/Query.hxx @@ -121,14 +121,14 @@ namespace xmlsearch { { public: - QueryHitData( double penalty,const rtl::OUString& document, rtl::OUString* terms ) + QueryHitData( double penalty,const OUString& document, OUString* terms ) : penalty_( penalty ), document_( document ), terms_( terms ) { } ~QueryHitData() { delete[] terms_; } - rtl::OUString getDocument() const { return document_; } + OUString getDocument() const { return document_; } double getPenalty() const { return penalty_; } @@ -137,9 +137,9 @@ namespace xmlsearch { double penalty_; - const rtl::OUString document_; + const OUString document_; - rtl::OUString* terms_; + OUString* terms_; }; // end class QueryHitData @@ -148,7 +148,7 @@ namespace xmlsearch { { public: - static PrefixTranslator* makePrefixTranslator( const rtl::OUString*,sal_Int32 ) + static PrefixTranslator* makePrefixTranslator( const OUString*,sal_Int32 ) { return 0; } |