summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/adodatalinks.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-25 09:48:32 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-25 09:48:32 +0000
commit1713e7e394abd31a8e757d32ddf6010da3c45f3c (patch)
tree23df90f66682193a81e83d12ca575b5fc15cfdc9 /dbaccess/source/ui/dlg/adodatalinks.cxx
parentbe88540d1d1c1f4453415a45d0d38c01becc49ec (diff)
INTEGRATION: CWS mingwport04 (1.6.80); FILE MERGED
2007/04/17 14:12:58 vg 1.6.80.1: #i75844# MinGW port efforts part 2
Diffstat (limited to 'dbaccess/source/ui/dlg/adodatalinks.cxx')
-rw-r--r--dbaccess/source/ui/dlg/adodatalinks.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/adodatalinks.cxx b/dbaccess/source/ui/dlg/adodatalinks.cxx
index 318410ad9100..de4801b83bd0 100644
--- a/dbaccess/source/ui/dlg/adodatalinks.cxx
+++ b/dbaccess/source/ui/dlg/adodatalinks.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: adodatalinks.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 13:36:51 $
+ * last change: $Author: vg $ $Date: 2007-05-25 10:48:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -64,10 +64,10 @@ BSTR PromptNew(long hWnd);
::rtl::OUString dataLink;
if (oldLink.getLength())
{
- dataLink=PromptEdit(hWnd,(BSTR)oldLink.getStr());
+ dataLink=reinterpret_cast<sal_Unicode *>(PromptEdit(hWnd,(BSTR)oldLink.getStr()));
}
else
- dataLink=PromptNew(hWnd);
+ dataLink=reinterpret_cast<sal_Unicode *>(PromptNew(hWnd));
return dataLink;
}
BSTR PromptNew(long hWnd)