diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-20 16:13:59 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-20 16:13:59 +0000 |
commit | 4a8b7621f0bcb5803bf968df90d6f4f5af5119b2 (patch) | |
tree | 0468189764c3c45b22f75c79f963a5ff68bc439e /jvmfwk/source/elements.cxx | |
parent | faeb6687ced9306ca1df36aa416448c361e83116 (diff) |
#i10000#,#i78538#: insert missing conversion
Diffstat (limited to 'jvmfwk/source/elements.cxx')
-rw-r--r-- | jvmfwk/source/elements.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jvmfwk/source/elements.cxx b/jvmfwk/source/elements.cxx index bdde55ca0a80..d528d952aba5 100644 --- a/jvmfwk/source/elements.cxx +++ b/jvmfwk/source/elements.cxx @@ -4,9 +4,9 @@ * * $RCSfile: elements.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: obo $ $Date: 2007-06-13 07:57:18 $ + * last change: $Author: hr $ $Date: 2007-06-20 17:13:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -323,7 +323,7 @@ void NodeJava::load() { CXmlCharPtr sUser(xmlNodeListGetString( docUser, cur->children, 1)); - m_userClassPath = boost::optional<rtl::OUString>(sUser); + m_userClassPath = boost::optional<rtl::OUString>(rtl::OUString(sUser)); } } else if (xmlStrcmp(cur->name, (xmlChar*) "javaInfo") == 0) |