diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 17:26:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 18:22:36 +0200 |
commit | eea7bf09d5c0342c43d8e605e2445425ef771d95 (patch) | |
tree | 625758b9c0dbc19eab6c86114c008026a39a7c0c /basctl | |
parent | 48a679cbc5775a7a033dfe494c2a0a513aba9b1f (diff) |
basctl: sal_False/True -> false/true
Change-Id: I6f9414eba5fce8797f07a3796a12b5213c0ed4e0
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/baside3.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
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 ); |