summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/frame/_XStorable.java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 10:56:28 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 10:56:28 +0000
commit9e022ae9042108d723ab400a1d0e16c8c06c85f6 (patch)
tree9d250add4c6d94672929e78ae87f3b0883d50828 /qadevOOo/tests/java/ifc/frame/_XStorable.java
parent4aa128b12d863e7efbaeab52c10f5d097068696d (diff)
INTEGRATION: CWS qadev22 (1.3.110); FILE MERGED
2005/03/18 13:04:35 cn 1.3.110.1: #i45397# log the URL to store
Diffstat (limited to 'qadevOOo/tests/java/ifc/frame/_XStorable.java')
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XStorable.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/frame/_XStorable.java b/qadevOOo/tests/java/ifc/frame/_XStorable.java
index c8acc6d8f171..d28bd16dc861 100644
--- a/qadevOOo/tests/java/ifc/frame/_XStorable.java
+++ b/qadevOOo/tests/java/ifc/frame/_XStorable.java
@@ -2,9 +2,9 @@
*
* $RCSfile: _XStorable.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change:$Date: 2003-09-08 10:40:05 $
+ * last change:$Date: 2005-03-29 11:56:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -175,8 +175,9 @@ public class _XStorable extends MultiMethodTest {
String url = (String) utils.getOfficeTemp(
(XMultiServiceFactory)tParam.getMSF());
- url += "xstorable.store.as.test";
if (url != null) {
+ url += "xstorable.store.as.test";
+ log.println("store as '" + url + "'");
try {
oObj.storeAsURL(url, new PropertyValue[0]);
storeUrl = url;
@@ -202,8 +203,9 @@ public class _XStorable extends MultiMethodTest {
String url = (String) utils.getOfficeTemp(
(XMultiServiceFactory)tParam.getMSF());
- url += "xstorable.store.as.test";
if (url != null) {
+ url += "xstorable.store.as.test";
+ log.println("store to '" + url + "'");
try {
oObj.storeToURL(url, new PropertyValue[0]);
tRes.tested("storeToURL()", true);