diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-10 12:06:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-13 08:17:42 +0200 |
commit | 62232e60bf2e87b216abd8cd22d5f5acc4338c57 (patch) | |
tree | 08ff4387ef6cdbd0e75def8211011ab30c090b07 /sw/source/ui/vba/vbaselection.cxx | |
parent | d8499c45eb9079cba4ac9b36c3e89f30e74fdf6a (diff) |
convert SplitTable_HeadlineOption to scoped enum
Change-Id: I5a9ea036b8827a84e646488b2b57012ebadd4d0a
Diffstat (limited to 'sw/source/ui/vba/vbaselection.cxx')
-rw-r--r-- | sw/source/ui/vba/vbaselection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbaselection.cxx b/sw/source/ui/vba/vbaselection.cxx index b5f4461d7819..be9eb17b6ef3 100644 --- a/sw/source/ui/vba/vbaselection.cxx +++ b/sw/source/ui/vba/vbaselection.cxx @@ -1128,7 +1128,7 @@ void SAL_CALL SwVbaSelection::SplitTable() SwFEShell* pFEShell = pDocShell->GetFEShell(); if( pFEShell ) { - pFEShell->SplitTable( HEADLINE_CNTNTCOPY ); + pFEShell->SplitTable( SplitTable_HeadlineOption::ContentCopy ); } } } |