diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 17:59:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:21:10 +0200 |
commit | 532911eb2b838a7b52514b636322cf327d3c4a58 (patch) | |
tree | 422a9cc7ce941a5dd7f391c837d539f8b3a7f270 /svx | |
parent | 930b60d9a16e2111d3c35371241a753193168936 (diff) |
SvxRTFParser::ReadBorder/BackgroundAttr bTableDef param wants to be bool
Change-Id: I78c34a539a62ed129309305ce6e37a8feb19b1fd
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/tablertfimporter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/tablertfimporter.cxx b/svx/source/table/tablertfimporter.cxx index caf0570e2306..a241d615c8e0 100644 --- a/svx/source/table/tablertfimporter.cxx +++ b/svx/source/table/tablertfimporter.cxx @@ -415,7 +415,7 @@ void SdrTableRTFParser::ProcToken( ImportInfo* pInfo ) // ((SvxRTFParser*)pInfo->pParser)->ReadBackgroundAttr(pInfo->nToken, mpInsDefault->maItemSet, sal_True ); break; case RTF_BRDRDEF: - static_cast<SvxRTFParser*>(pInfo->pParser)->ReadBorderAttr(pInfo->nToken, mpInsDefault->maItemSet, sal_True ); + static_cast<SvxRTFParser*>(pInfo->pParser)->ReadBorderAttr(pInfo->nToken, mpInsDefault->maItemSet, true ); break; } } |