summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-10 17:32:48 +0100
committerAndras Timar <andras.timar@collabora.com>2016-07-13 21:38:24 +0200
commitbda666edabc390312e619df89fd9c07b55a4d064 (patch)
tree1a60fbfbb5b6ff6550162ec95ea63ae1708a95b9 /include
parent20d00043469901f55fb2f54a774035dfcd559dce (diff)
Turn JavaInfo sal_Sequence* member into rtl::ByteSequence
Change-Id: Iecd476970b0b7a46afe223f71e95b0010048d7b1 (cherry picked from commit 8546831b3b36e29c1ee42b790cbecd3fd8d8bbaf)
Diffstat (limited to 'include')
-rw-r--r--include/jvmfwk/framework.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/jvmfwk/framework.hxx b/include/jvmfwk/framework.hxx
index e97e69d81455..39c0512cf619 100644
--- a/include/jvmfwk/framework.hxx
+++ b/include/jvmfwk/framework.hxx
@@ -23,6 +23,7 @@
#define INCLUDED_JVMFWK_FRAMEWORK_HXX
#include <jvmfwk/jvmfwkdllapi.hxx>
+#include <rtl/byteseq.hxx>
#include <rtl/ustring.h>
#include <rtl/ustring.hxx>
#include <osl/mutex.h>
@@ -207,8 +208,7 @@ typedef enum _javaFrameworkError
<p>
Instances of this struct are created by the plug-in libraries which are used by
- this framework (jvmfwk/vendorplugin.h). The contained members must be
- freed individually.
+ this framework (jvmfwk/vendorplugin.h).
For convenience this API provides the function <code>jfw_freeJavaInfo</code>
which frees the objects properly. </p>
*/
@@ -254,7 +254,7 @@ struct JavaInfo
values. The plug-in libraries can put all data, necessary for
starting the java runtime into this sequence. </p>
*/
- sal_Sequence * arVendorData;
+ rtl::ByteSequence arVendorData;
};
/** frees the memory of a <code>JavaInfo</code> object.
@@ -271,7 +271,7 @@ JVMFWK_DLLPUBLIC void jfw_freeJavaInfo(JavaInfo *pInfo);
in the second <code>JavaInfo</code> object. The equality of the
<code>OUString</code> members is determined
by <code>operator ==</code>.
- Similarly the equality of the <code>sal_Sequence</code> is
+ Similarly the equality of the <code>rtl::ByteSequence</code> is
also determined by a comparison
function (see <code>rtl::ByteSequence::operator ==</code>). </p>
<p>