[Libreoffice-commits] core.git: desktop/source

Markus Mohrhard markus.mohrhard at googlemail.com
Tue May 24 00:34:28 UTC 2016


 desktop/source/app/crashreport.cxx |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 8857877aa609de4c8476330c34a24906f5fdc05b
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Mon May 23 23:47:17 2016 +0200

    return paths and not URLs
    
    Change-Id: I03553a1fe98ac7ac780333b2ec247ed0cd781ffb
    Reviewed-on: https://gerrit.libreoffice.org/25379
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index f1b0828..4f1836d 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -61,7 +61,11 @@ OUString getCrashUserProfileDirectory()
     rtl::Bootstrap::expandMacros(url);
     osl::Directory::create(url);
 
-    return url;
++#if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID
++    return url.copy(7);
++#elif defined WNT
++    return url.copy(8);
++#endif
 }
 
 }


More information about the Libreoffice-commits mailing list