summaryrefslogtreecommitdiff
path: root/stoc/test/uriproc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:08:00 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:08:00 +0000
commitb5486d4d07a04a2b445a110cc031aae9ba595fcd (patch)
treecda4295c83e7ca38c2ca4da5cb0d013dd900c462 /stoc/test/uriproc
parent828d33367b0e364fb155a78df8e39ab0077e4677 (diff)
INTEGRATION: CWS warnings01 (1.5.6); FILE MERGED
2006/01/31 16:01:22 sb 1.5.6.1: #i53898# Made code warning-free.
Diffstat (limited to 'stoc/test/uriproc')
-rw-r--r--stoc/test/uriproc/test_uriproc.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/stoc/test/uriproc/test_uriproc.cxx b/stoc/test/uriproc/test_uriproc.cxx
index 7bb276acc831..ccc56f11d121 100644
--- a/stoc/test/uriproc/test_uriproc.cxx
+++ b/stoc/test/uriproc/test_uriproc.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: test_uriproc.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:36:40 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:08:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -755,13 +755,13 @@ void Test::testVndSunStarScript() {
Parameter parameters[parameterCount];
};
Data data[] = {
- { "vnd.sun.star.script:", 0 },
- { "vnd.sun.star.script:/", 0 },
- { "vnd.sun.star.script:/abc/def?ghi=jkl&mno=pqr", 0 },
- { "vnd.sun.star.script:abc%3fdef/ghi", "abc?def/ghi" },
- { "vnd.sun.star.script:name?a", 0 },
+ { "vnd.sun.star.script:", 0, {} },
+ { "vnd.sun.star.script:/", 0, {} },
+ { "vnd.sun.star.script:/abc/def?ghi=jkl&mno=pqr", 0, {} },
+ { "vnd.sun.star.script:abc%3fdef/ghi", "abc?def/ghi", {} },
+ { "vnd.sun.star.script:name?a", 0, {} },
{ "vnd.sun.star.script:name?a=", "name", { { "a", "" }, { "A", 0 } } },
- { "vnd.sun.star.script:name?a=&", 0 },
+ { "vnd.sun.star.script:name?a=&", 0, {} },
{ "vnd.sun.star.script:name?key1=&%26=%3D&key1=hello", "name",
{ { "key1", "" }, { "key2", 0 }, { "&", "=" } } } };
for (std::size_t i = 0; i < sizeof data / sizeof data[0]; ++i) {