diff options
author | David Tardon <dtardon@redhat.com> | 2011-11-21 09:00:45 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-11-21 09:04:19 +0100 |
commit | c5aeaee20c59144c9d2cdf3abe28dfd1500ab852 (patch) | |
tree | 2f0b1054d21a933a823f055e2965e946dc789585 /vcl/win/source/app/salinst.cxx | |
parent | 13bbf43b1356f9be9c5aac1f17f3781cf1935849 (diff) |
convert win plugin to rtl::O(U)String
Diffstat (limited to 'vcl/win/source/app/salinst.cxx')
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index caf0d273cba1..d657f6a35603 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -84,11 +84,11 @@ // ======================================================================= -void SalAbort( const XubString& rErrorText, bool ) +void SalAbort( const rtl::OUString& rErrorText, bool ) { ImplFreeSalGDI(); - if ( !rErrorText.Len() ) + if ( rErrorText.isEmpty() ) { // #112255# make sure crash reporter is triggered RaiseException( 0, EXCEPTION_NONCONTINUABLE, 0, NULL ); |