Kaydet (Commit) 5c66da2c authored tarafından Julien Nabet's avatar Julien Nabet

Fix variable value reassigned before old value used

Change-Id: Ied47c5268b4554b219028281916d884aebf816dd
üst d7904330
......@@ -1969,9 +1969,8 @@ void FileDialogHelper_Impl::saveConfig()
try
{
sal_Bool bValue = sal_False;
aValue = xDlg->getValue( ExtendedFilePickerElementIds::CHECKBOX_PREVIEW, 0 );
bValue = sal_False;
sal_Bool bValue = sal_False;
aValue >>= bValue;
aUserData.SetToken( 1, ' ', OUString::number( (sal_Int32) bValue ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment