summaryrefslogtreecommitdiff
path: root/sj2
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-04-13 07:34:46 +0000
committerOliver Bolte <obo@openoffice.org>2005-04-13 07:34:46 +0000
commit5e056b9e8711cf535fed36752a86fd468709a024 (patch)
treeb4c4805890580250dc7d849f280a5dd9f36df4ac /sj2
parent6c08cd9c1f789a0b4b058da08943a4fffd73721f (diff)
INTEGRATION: CWS visibility03 (1.22.10); FILE MERGED
2005/03/02 14:46:29 mhu 1.22.10.1: #i40092# Fixed string ctor (char literal) usage.
Diffstat (limited to 'sj2')
-rw-r--r--sj2/source/jscpp/sjapplet_impl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sj2/source/jscpp/sjapplet_impl.cxx b/sj2/source/jscpp/sjapplet_impl.cxx
index 6087fb8463c4..0aba4ab0ce34 100644
--- a/sj2/source/jscpp/sjapplet_impl.cxx
+++ b/sj2/source/jscpp/sjapplet_impl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sjapplet_impl.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: rt $ $Date: 2004-11-26 18:17:27 $
+ * last change: $Author: obo $ $Date: 2005-04-13 08:34:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -303,7 +303,7 @@ void SjApplet2_Impl::init(Window * pParentWin,
//WorkAround, weil Java mit dem | nicht zurecht kommt
if(rDocBase.GetProtocol() == INET_PROT_FILE && url.pData->buffer[9] == INET_ENC_DELIM_TOKEN) {
rtl::OUString tmp = url.copy(0, 9);
- tmp += rtl::OUString(INET_DELIM_TOKEN);
+ tmp += String(INET_DELIM_TOKEN);
tmp += url.copy(10);
url = tmp;