[Libreoffice-commits] .: sdext/source
Thomas Arnhold
tarnhold at kemper.freedesktop.org
Sun Feb 13 11:35:52 PST 2011
sdext/source/minimizer/pppoptimizerdialog.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit da45d75c4cf849728a4d196d8fbb55341283cdb5
Author: Thomas Arnhold <thomas at arnhold.org>
Date: Sun Feb 13 20:35:49 2011 +0100
Correct variable initialization for 0b58d1d635b33148e6765eb35016b0fb43f214b3
diff --git a/sdext/source/minimizer/pppoptimizerdialog.cxx b/sdext/source/minimizer/pppoptimizerdialog.cxx
index 47de0ae..7154c54 100644
--- a/sdext/source/minimizer/pppoptimizerdialog.cxx
+++ b/sdext/source/minimizer/pppoptimizerdialog.cxx
@@ -139,7 +139,8 @@ void SAL_CALL PPPOptimizerDialog::dispatch( const URL& rURL,
{
try
{
- sal_Int64 nFileSizeSource,nFileSizeDest = 0;
+ sal_Int64 nFileSizeSource = 0;
+ sal_Int64 nFileSizeDest = 0;
mpOptimizerDialog = new OptimizerDialog( mxMSF, mxFrame, this );
mpOptimizerDialog->execute();
More information about the Libreoffice-commits
mailing list