basctl: sal_False/True -> false/true

Change-Id: I6f9414eba5fce8797f07a3796a12b5213c0ed4e0
This commit is contained in:
Stephan Bergmann
2014-09-15 17:26:55 +02:00
parent 48a679cbc5
commit eea7bf09d5
2 changed files with 3 additions and 3 deletions

View File

@@ -471,7 +471,7 @@ bool ModulWindow::SaveBasicSource()
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue;
aValue <<= sal_True;
aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
if ( !aCurPath.isEmpty() )

View File

@@ -714,7 +714,7 @@ bool DialogWindow::SaveDialog()
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue;
aValue <<= sal_True;
aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
if ( !aCurPath.isEmpty() )
@@ -960,7 +960,7 @@ bool implImportDialog( Window* pWin, const OUString& rCurPath, const ScriptDocum
Reference< XFilePickerControlAccess > xFPControl(xFP, UNO_QUERY);
xFPControl->enableControl(ExtendedFilePickerElementIds::CHECKBOX_PASSWORD, false);
Any aValue;
aValue <<= sal_True;
aValue <<= true;
xFPControl->setValue(ExtendedFilePickerElementIds::CHECKBOX_AUTOEXTENSION, 0, aValue);
OUString aCurPath( rCurPath );