summaryrefslogtreecommitdiff
path: root/svx/source/table
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-15 16:10:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-16 10:44:03 +0100
commit882cadaac40226ea9b5dbbceb7e82328d5a935ee (patch)
tree8739f3398b596ede283f8891bb8a5c7e4f0b941d /svx/source/table
parent67d245adca298134fc8ab4364acbe880b4e0911a (diff)
convert EETextFormat to scoped enum
and drop unused BIN constant Change-Id: I4ecda96f39147f7e9bceb11ecdb4f0ffe42d2053 Reviewed-on: https://gerrit.libreoffice.org/46589 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/table')
-rw-r--r--svx/source/table/tablertfimporter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/tablertfimporter.cxx b/svx/source/table/tablertfimporter.cxx
index eb09145f52db..07c2e0395600 100644
--- a/svx/source/table/tablertfimporter.cxx
+++ b/svx/source/table/tablertfimporter.cxx
@@ -163,7 +163,7 @@ void SdrTableRTFParser::Read( SvStream& rStream )
Link<RtfImportInfo&,void> aOldLink( rEdit.GetRtfImportHdl() );
rEdit.SetRtfImportHdl( LINK( this, SdrTableRTFParser, RTFImportHdl ) );
- mpOutliner->Read( rStream, OUString(), EE_FORMAT_RTF );
+ mpOutliner->Read( rStream, OUString(), EETextFormat::Rtf );
rEdit.SetRtfImportHdl( aOldLink );
FillTable();