diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-13 20:35:49 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-13 20:35:49 +0100 |
commit | f4f7fea877c47e8e95613f770ed0f87d1b2f8464 (patch) | |
tree | 4532f15ccb80e8863ad9e2e136c9d7ce8eea6175 /sdext | |
parent | 269e7e15a484fb6a2b9dc52bad59f19d71bf8cab (diff) |
Correct variable initialization for 0b58d1d635b33148e6765eb35016b0fb43f214b3
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/minimizer/pppoptimizerdialog.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sdext/source/minimizer/pppoptimizerdialog.cxx b/sdext/source/minimizer/pppoptimizerdialog.cxx index 5decfc85234e..4a560f93ead2 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(); |