Kaydet (Commit) eea7bf09 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

basctl: sal_False/True -> false/true

Change-Id: I6f9414eba5fce8797f07a3796a12b5213c0ed4e0
üst 48a679cb
...@@ -471,7 +471,7 @@ bool ModulWindow::SaveBasicSource() ...@@ -471,7 +471,7 @@ bool ModulWindow::SaveBasicSource()
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY); Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false); xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue; Any aValue;
aValue <<= sal_True; aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue); xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
if ( !aCurPath.isEmpty() ) if ( !aCurPath.isEmpty() )
......
...@@ -714,7 +714,7 @@ bool DialogWindow::SaveDialog() ...@@ -714,7 +714,7 @@ bool DialogWindow::SaveDialog()
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY); Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false); xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue; Any aValue;
aValue <<= sal_True; aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue); xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
if ( !aCurPath.isEmpty() ) if ( !aCurPath.isEmpty() )
...@@ -960,7 +960,7 @@ bool implImportDialog( Window* pWin, const OUString& rCurPath, const ScriptDocum ...@@ -960,7 +960,7 @@ bool implImportDialog( Window* pWin, const OUString& rCurPath, const ScriptDocum
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY); Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false); xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue; Any aValue;
aValue <<= sal_True; aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue); xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
OUString aCurPath( rCurPath ); OUString aCurPath( rCurPath );
......
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