summaryrefslogtreecommitdiff
path: root/include/sfx2/progress.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-22 15:48:19 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:00 +0200
commit4abae946bb89bab7032f3e9f4803ae1c09ef70f5 (patch)
tree069c62b594cb6631368105c6fefe5ef9a0efc640 /include/sfx2/progress.hxx
parent1fe85b15417ff88d8c08db2daa5ee632073e23b9 (diff)
convert include/sfx2/progress.hxx from String to OUString
Change-Id: Iab04310ff81a5f2fab20e924146eb471aa51d115
Diffstat (limited to 'include/sfx2/progress.hxx')
-rw-r--r--include/sfx2/progress.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/sfx2/progress.hxx b/include/sfx2/progress.hxx
index 285360272d30..bb598b8a62bf 100644
--- a/include/sfx2/progress.hxx
+++ b/include/sfx2/progress.hxx
@@ -26,7 +26,9 @@
#include <tools/link.hxx>
#include <rtl/ustring.hxx>
-class String;
+namespace rtl {
+ class OUString;
+};
class SfxObjectShell;
struct SfxProgress_Impl;
struct PlugInLoadStatus;
@@ -42,13 +44,13 @@ class SFX2_DLLPUBLIC SfxProgress
public:
SfxProgress( SfxObjectShell* pObjSh,
- const String& rText,
+ const rtl::OUString& rText,
sal_uIntPtr nRange, sal_Bool bAllDocs = sal_False,
sal_Bool bWait = sal_True );
virtual ~SfxProgress();
virtual void SetText( const OUString& rText );
- sal_Bool SetStateText( sal_uIntPtr nVal, const String &rVal, sal_uIntPtr nNewRange = 0 );
+ sal_Bool SetStateText( sal_uIntPtr nVal, const rtl::OUString &rVal, sal_uIntPtr nNewRange = 0 );
virtual sal_Bool SetState( sal_uIntPtr nVal, sal_uIntPtr nNewRange = 0 );
sal_uIntPtr GetState() const { return nVal; }