diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:21:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:32 +0200 |
commit | 5ef76efb407a3dba8898a9a9b1b80cc548a94105 (patch) | |
tree | c8fdf6379c1ce4bd6a7466cbc5c9576fd38ecbda /xmloff/source/table | |
parent | 2170e2f230b612c035a1264a1d7a7c45b5d24622 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I5896c6b8bf2aa9c7c66ca5f7c50cee1b0738ea0a
Diffstat (limited to 'xmloff/source/table')
-rw-r--r-- | xmloff/source/table/XMLTableImport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx index f1f1c4b29669..69899159862b 100644 --- a/xmloff/source/table/XMLTableImport.cxx +++ b/xmloff/source/table/XMLTableImport.cxx @@ -661,8 +661,8 @@ void XMLCellImportContext::EndElement() { // delete addition newline const OUString aEmpty; - mxCursor->gotoEnd( sal_False ); - mxCursor->goLeft( 1, sal_True ); + mxCursor->gotoEnd( false ); + mxCursor->goLeft( 1, true ); mxCursor->setString( aEmpty ); // reset cursor |