summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/imoptdlg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-24 12:33:01 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-24 12:36:26 +0200
commit60467763e32833232394e05642338f60346c0d53 (patch)
tree909ca991a159262aa6d86bf44c9b2c56834fec33 /sc/source/ui/dbgui/imoptdlg.cxx
parent7b75b9f22cf9c6f5a4b0b2b49766415fca5fd334 (diff)
loplugin:simplifybool
Change-Id: Ib656d2da786511687fbcf3f0ef39094ef211eb97
Diffstat (limited to 'sc/source/ui/dbgui/imoptdlg.cxx')
-rw-r--r--sc/source/ui/dbgui/imoptdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/imoptdlg.cxx b/sc/source/ui/dbgui/imoptdlg.cxx
index 13c348fdd0fe..ce2ae0bfa3fd 100644
--- a/sc/source/ui/dbgui/imoptdlg.cxx
+++ b/sc/source/ui/dbgui/imoptdlg.cxx
@@ -58,7 +58,7 @@ ScImportOptions::ScImportOptions( const OUString& rStr )
if ( nTokenCount == 4 )
{
// compatibility with old options string: "Save as shown" as 4th token, numeric
- bSaveAsShown = (rStr.getToken( 3, ',' ).toInt32() ? true : false);
+ bSaveAsShown = rStr.getToken( 3, ',' ).toInt32() != 0;
bQuoteAllText = true; // use old default then
}
else