summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-03-26 12:52:01 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-03-26 12:52:01 +0000
commite4d2b9646218c9fb5427e5587bc15960742a0a88 (patch)
tree9bdbeb04ee789cd79ca081b146952402f876671d
parent04aecee5996a6a58436b2baa9b7c78b1664d5161 (diff)
INTEGRATION: CWS mingwport03 (1.13.32); FILE MERGED
2006/11/09 00:20:49 vg 1.13.32.2: RESYNC: (1.13-1.14); FILE MERGED 2006/09/18 14:33:36 vg 1.13.32.1: #i53572# MinGW port
-rw-r--r--shell/source/win32/simplemail/smplmailclient.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/win32/simplemail/smplmailclient.cxx b/shell/source/win32/simplemail/smplmailclient.cxx
index b7da5338ce04..fcb7989676d5 100644
--- a/shell/source/win32/simplemail/smplmailclient.cxx
+++ b/shell/source/win32/simplemail/smplmailclient.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: smplmailclient.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 01:47:59 $
+ * last change: $Author: vg $ $Date: 2007-03-26 13:52:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -118,7 +118,7 @@ namespace /* private */
lret = RegQueryValueW(hkey, NULL, buff, &sz);
if (lret == ERROR_SUCCESS)
{
- osl::FileBase::getFileURLFromSystemPath(buff, altSenddocUrl);
+ osl::FileBase::getFileURLFromSystemPath(reinterpret_cast<const sal_Unicode*>(buff), altSenddocUrl);
}
RegCloseKey(hkey);
}
@@ -139,7 +139,7 @@ namespace /* private */
if (senddocUrl.getLength() == 0)
{
rtl::OUString baseUrl;
- if (!osl::Module::getUrlFromAddress(getSenddocUrl, baseUrl))
+ if (!osl::Module::getUrlFromAddress(reinterpret_cast<oslGenericFunction>(getSenddocUrl), baseUrl))
return rtl::OUString();
senddocUrl = baseUrl.copy(0, baseUrl.lastIndexOf('/') + 1);