summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-10 10:15:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-10 10:15:10 +0200
commit77a57a5cac6018552b2ca8c4a419afeb179e38e2 (patch)
tree6c0ff8f0ebf42e9444c85593ca4a7f3ff6fca79e /desktop
parentd3f7146db6854ea844856c0f93a7fc6fb62b71a1 (diff)
Clean up uses of SAL_U/SAL_W: desktop
Change-Id: Ie1f5407a347a19c000793bf83e3545d566937d72
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/crashreport.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index 678f433906a9..a12249da9096 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -122,7 +122,8 @@ void CrashReporter::updateMinidumpLocation()
mpExceptionHandler->set_minidump_descriptor(descriptor);
#elif defined WNT
OUString aURL = getCrashDirectory();
- mpExceptionHandler->set_dump_path(SAL_W(aURL.getStr()));
+ mpExceptionHandler->set_dump_path(
+ reinterpret_cast<wchar_t const *>(aURL.getStr()));
#endif
}