From eea7bf09d5c0342c43d8e605e2445425ef771d95 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 15 Sep 2014 17:26:55 +0200 Subject: basctl: sal_False/True -> false/true Change-Id: I6f9414eba5fce8797f07a3796a12b5213c0ed4e0 --- basctl/source/basicide/baside2.cxx | 2 +- basctl/source/basicide/baside3.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'basctl') diff --git a/basctl/source/basicide/baside2.cxx b/basctl/source/basicide/baside2.cxx index 330d37b71633..75c78d75bb75 100644 --- a/basctl/source/basicide/baside2.cxx +++ b/basctl/source/basicide/baside2.cxx @@ -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() ) diff --git a/basctl/source/basicide/baside3.cxx b/basctl/source/basicide/baside3.cxx index 1e1e84fa6761..c893386868a3 100644 --- a/basctl/source/basicide/baside3.cxx +++ b/basctl/source/basicide/baside3.cxx @@ -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 ); -- cgit