diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-18 12:46:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-18 12:46:35 +0200 |
commit | c91b103930f4f441ab333d6f3026d6c19d4b4d0f (patch) | |
tree | b3bb0edd19ebf20bdca3c9b3605cec986d2e650f /sw/source | |
parent | 1c73135493e844c04446f58e7001920381787317 (diff) |
convert SvButtonState to scoped enum
Change-Id: I601f9e2fe33e85cf3f7dc52ee20d68202bd2b09d
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/config/optcomp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/config/optcomp.cxx b/sw/source/ui/config/optcomp.cxx index 04252c9b5182..e475c619745b 100644 --- a/sw/source/ui/config/optcomp.cxx +++ b/sw/source/ui/config/optcomp.cxx @@ -107,7 +107,7 @@ SwCompatibilityOptPage::SwCompatibilityOptPage(vcl::Window* pParent, const SfxIt SvTreeListEntry* pEntry = m_pOptionsLB->SvTreeListBox::InsertEntry( sEntry ); if ( pEntry ) { - m_pOptionsLB->SetCheckButtonState( pEntry, SV_BUTTON_UNCHECKED ); + m_pOptionsLB->SetCheckButtonState( pEntry, SvButtonState::Unchecked ); } } m_sUserEntry = m_pFormattingLB->GetEntry(m_pFormattingLB->GetEntryCount()-1); |