vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8e9041dfdab7f99f79fdc6d32d3e50e8b4114cdd
Author:     Tomáš Chvátal <tchva...@suse.com>
AuthorDate: Fri Mar 15 15:58:40 2019 +0100
Commit:     Adolfo Jayme Barrientos <fit...@ubuntu.com>
CommitDate: Mon Mar 18 06:01:13 2019 +0100

    Fix build with older versions of Boost
    
    Change-Id: Ic5fa7c703821c23e704d2c58f9a04d0ac8ce8ef2
    Reviewed-on: https://gerrit.libreoffice.org/69309
    Reviewed-by: Tomáš Chvátal <tchva...@suse.cz>
    Tested-by: Tomáš Chvátal <tchva...@suse.cz>
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com>

diff --git a/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.cxx 
b/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.cxx
index 3bf5ddcd29bc..044a92d06c86 100644
--- a/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.cxx
+++ b/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.cxx
@@ -58,7 +58,7 @@ OUString applicationDirPath()
     const auto utf8Path = applicationSystemPath.toUtf8();
     auto ret = boost::filesystem::path(utf8Path.getStr(), utf8Path.getStr() + 
utf8Path.getLength());
     ret.remove_filename();
-    return OUString::fromUtf8(OString(ret.c_str(), ret.size()));
+    return OUString::fromUtf8(OString(ret.c_str(), strlen(ret.c_str())));
 }
 
 OUString findPickerExecutable()
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to