diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:02:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:29 +0100 |
commit | 9cc60839f3f3a9dfcf52d5eb76b7d36c1fbc751a (patch) | |
tree | 6995b212a06737f908c59fbadbc64f2b0c493c78 /dbaccess/source/ui/dlg/indexdialog.cxx | |
parent | e1dc859bebc0ce9ec0d61ce7948aff60f94cb0e8 (diff) |
bool improvements
Change-Id: I294b930214ce82033402afecf2b3eb2d04299505
Diffstat (limited to 'dbaccess/source/ui/dlg/indexdialog.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/indexdialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/indexdialog.cxx b/dbaccess/source/ui/dlg/indexdialog.cxx index 3dcea07934ef..e87dfe0ef764 100644 --- a/dbaccess/source/ui/dlg/indexdialog.cxx +++ b/dbaccess/source/ui/dlg/indexdialog.cxx @@ -549,7 +549,7 @@ namespace dbaui OSL_ENSURE(!m_bEditAgain, "DbaIndexDialog::OnCloseDialog: somebody was faster than hell!"); // this means somebody entered a new name, which was invalid, which cause us to posted us an event, // and before the event arrived the user clicked onto "close". VERY fast, this user .... - m_aIndexes.EndEditing(sal_False); + m_aIndexes.EndEditing(false); if (m_bEditAgain) // could not commit the new name (started a new - asynchronous - edit trial) return 1L; @@ -762,7 +762,7 @@ namespace dbaui m_aIndexes.EndSelection(); if (m_aIndexes.IsEditingActive()) - m_aIndexes.EndEditing(sal_False); + m_aIndexes.EndEditing(false); // commit the old data if (m_aIndexes.FirstSelected() != m_pPreviousSelection) |