diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-28 13:17:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:15 +0200 |
commit | 01b33edcfc0a87b8035c14d174d848c3af881b2f (patch) | |
tree | 2436174b03be411341b2d366e492641091a2e83d /sfx2 | |
parent | 8103ea81b8eaed28838c475344b608f546f1c918 (diff) |
convert sfx2/source/doc/querytemplate.hxx from String to OUString
Change-Id: Iac77125e03354f24c0e27f630af7acab47fcd327
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/querytemplate.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/querytemplate.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/doc/querytemplate.cxx b/sfx2/source/doc/querytemplate.cxx index b5ce118c659e..720255e83467 100644 --- a/sfx2/source/doc/querytemplate.cxx +++ b/sfx2/source/doc/querytemplate.cxx @@ -27,7 +27,7 @@ namespace sfx2 { -QueryTemplateBox::QueryTemplateBox( Window* pParent, const String& rMessage ) : +QueryTemplateBox::QueryTemplateBox( Window* pParent, const OUString& rMessage ) : MessBox ( pParent, 0, Application::GetDisplayName(), rMessage ) { SetImage( QueryBox::GetStandardImage() ); diff --git a/sfx2/source/doc/querytemplate.hxx b/sfx2/source/doc/querytemplate.hxx index dc0a78cd1f15..b5ef5b70c580 100644 --- a/sfx2/source/doc/querytemplate.hxx +++ b/sfx2/source/doc/querytemplate.hxx @@ -27,7 +27,7 @@ namespace sfx2 class QueryTemplateBox : public MessBox { public: - QueryTemplateBox( Window* pParent, const String& rMessage ); + QueryTemplateBox( Window* pParent, const OUString& rMessage ); }; } // end of namespace sfx2 |