Fix uninitialized variables

Change-Id: Iafd54c2b766bebf87cca211948a10695d585f0d9
This commit is contained in:
Julien Nabet
2013-01-27 21:04:43 +01:00
parent e820c249a4
commit d5d202709f

View File

@@ -329,8 +329,8 @@ Any XLB_Invocation::invoke( const OUString & rFunctionName,
sal_uInt32 nULong; sal_uInt32 nULong;
sal_Int64 nHyper; sal_Int64 nHyper;
sal_uInt64 nUHyper; sal_uInt64 nUHyper;
float fFloat; float fFloat = 0.0;
double fDouble; double fDouble = 0.0;
TestEnum eEnum; TestEnum eEnum;
OUString aString; OUString aString;
Reference< XInterface > xInterface; Reference< XInterface > xInterface;