diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-25 21:13:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-26 12:28:09 +0100 |
commit | f03aebbd5fd4571d0663a8287dcc6a030b56305a (patch) | |
tree | 84c8b3a49dbd7c62c2539b7321881757b66c8deb /sw/source/ui | |
parent | 31d649000a87edbec3eee2d5d1e176aa5cc8473a (diff) |
bool improvements
Change-Id: I00eb9eb8fa356f17fa219c4a669f8301064bfc83
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/fldui/flddb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/fldui/flddb.cxx b/sw/source/ui/fldui/flddb.cxx index 4dc390a91686..f478d42468ce 100644 --- a/sw/source/ui/fldui/flddb.cxx +++ b/sw/source/ui/fldui/flddb.cxx @@ -410,7 +410,7 @@ void SwFldDBPage::CheckInsert() if (nTypeId == TYP_DBNUMSETFLD) { - sal_Bool bHasValue = !m_pValueED->GetText().isEmpty(); + bool bHasValue = !m_pValueED->GetText().isEmpty(); bInsert &= bHasValue; } |