diff options
author | Radu Ioan <ioan.radu.g@gmail.com> | 2014-11-21 20:48:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-11-23 18:15:44 +0100 |
commit | 7528b498b634f0d96a710afc7faf20299cc5792d (patch) | |
tree | ee6c39fbf1d8e91f43738f6e9a9aa388f059f0dc /svx/source/tbxctrls/itemwin.cxx | |
parent | 40833b49ebdef2e5ab9ece33fc558fd0929f4e8d (diff) |
fdo#85486 - Clean up unnecessary enumerations from xenum.hxx
Removed XLineStyle
Reviewed on:
https://gerrit.libreoffice.org/13029
Change-Id: I583575a04988ccf932374e411672ba14a3f3cb2f
Diffstat (limited to 'svx/source/tbxctrls/itemwin.cxx')
-rw-r--r-- | svx/source/tbxctrls/itemwin.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/itemwin.cxx b/svx/source/tbxctrls/itemwin.cxx index ebc7161fce63..a74bddb2a113 100644 --- a/svx/source/tbxctrls/itemwin.cxx +++ b/svx/source/tbxctrls/itemwin.cxx @@ -96,22 +96,22 @@ void SvxLineBox::Select() if ( !IsTravelSelect() ) { - XLineStyle eXLS; + drawing::LineStyle eXLS; sal_Int32 nPos = GetSelectEntryPos(); switch ( nPos ) { case 0: - eXLS = XLINE_NONE; + eXLS = drawing::LineStyle_NONE; break; case 1: - eXLS = XLINE_SOLID; + eXLS = drawing::LineStyle_SOLID; break; default: { - eXLS = XLINE_DASH; + eXLS = drawing::LineStyle_DASH; if ( nPos != LISTBOX_ENTRY_NOTFOUND && SfxObjectShell::Current() && |