summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-06-06 15:50:51 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-06-06 15:52:05 +0200
commit35a65baefe99181685aea8e630d27c5e2a7c6bc4 (patch)
treec856875ba27b7fa1305c47ed3c6c736948395158 /basic
parent47cc957c36eceb4ae035006137223b5afb652696 (diff)
Slowly, but surely going on compiling for mingw64
Change-Id: I590aa6a854a040281bf73d5be768c05d4906a984
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx
index 0595d855d56b..1575226d3be8 100644
--- a/basic/source/runtime/dllmgr-x64.cxx
+++ b/basic/source/runtime/dllmgr-x64.cxx
@@ -43,7 +43,6 @@
#include "dllmgr.hxx"
using namespace css;
-using namespace css::uno;
/* Open issues:
@@ -495,8 +494,8 @@ SbError call(
sal_Int32 (*proc_i)(double d, ...) = (sal_Int32 (*)(double, ...)) proc.proc;
double (*proc_d)(double d, ...) = (double (*)(double, ...)) proc.proc;
- sal_Int64 iRetVal;
- double dRetVal;
+ sal_Int64 iRetVal = 0;
+ double dRetVal = 0.0;
switch (result.GetType()) {
case SbxEMPTY:
@@ -712,7 +711,7 @@ OUString fullDllName(OUString const & name) {
struct SbiDllMgr::Impl: private boost::noncopyable {
private:
- typedef std::map< OUString, Reference< Dll > > Dlls;
+ typedef std::map< OUString, ::rtl::Reference< Dll > > Dlls;
public:
Dll * getDll(OUString const & name);