diff options
author | David Tardon <dtardon@redhat.com> | 2011-11-21 09:00:21 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-11-21 09:03:43 +0100 |
commit | 737f61ba4c202834e70bbaa746b4a9ce0137a891 (patch) | |
tree | 3ba0de5068dbd7972161af72c893204ecd5d36be /vcl/inc/salsys.hxx | |
parent | ee3ad385fb3ca476e57e80d7b77c1e184e52e1d8 (diff) |
Convert Sal to rtl::O(U)String
Diffstat (limited to 'vcl/inc/salsys.hxx')
-rw-r--r-- | vcl/inc/salsys.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/vcl/inc/salsys.hxx b/vcl/inc/salsys.hxx index 2f2f6d08e9e6..1a53ec978441 100644 --- a/vcl/inc/salsys.hxx +++ b/vcl/inc/salsys.hxx @@ -29,10 +29,13 @@ #ifndef _SV_SALSYS_HXX #define _SV_SALSYS_HXX -#include <tools/string.hxx> #include <tools/gen.hxx> #include <vcl/dllapi.h> +namespace rtl +{ + class OUString; +} /* Button combinations for ShowNativeMessageBox */ @@ -136,8 +139,8 @@ public: See button identifier above. If the function fails the return value is 0. */ - virtual int ShowNativeMessageBox( const String& rTitle, - const String& rMessage, + virtual int ShowNativeMessageBox( const rtl::OUString& rTitle, + const rtl::OUString& rMessage, int nButtonCombination, int nDefaultButton) = 0; }; |