diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-02-16 10:15:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-02-16 10:15:20 +0000 |
commit | 0d9ad65f689a975747903b226baa0132d057f523 (patch) | |
tree | ac29cfd4cb2af545609d91d63386fcaf490a2b57 /sw/source/uibase | |
parent | a6afec6b004aaab3dd5c114bf92725b54d89b4c1 (diff) |
replace SwFootnoteAdj with css::text::HorizontalAdjust
to ensure the retention of the values the code depends on
Change-Id: I3baafc1ee66481518aec5928585464c8a214be16
Diffstat (limited to 'sw/source/uibase')
-rw-r--r-- | sw/source/uibase/utlui/uiitems.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/uiitems.cxx b/sw/source/uibase/utlui/uiitems.cxx index 579085aa1988..c8dd123f05b0 100644 --- a/sw/source/uibase/utlui/uiitems.cxx +++ b/sw/source/uibase/utlui/uiitems.cxx @@ -166,7 +166,7 @@ bool SwPageFootnoteInfoItem::PutValue(const Any& rVal, sal_uInt8 nMemberId) sal_Int16 nSet = 0; rVal >>= nSet; if(nSet >= 0 && nSet < 3) //text::HorizontalAdjust - aFootnoteInfo.SetAdj((SwFootnoteAdj)nSet); + aFootnoteInfo.SetAdj((css::text::HorizontalAdjust)nSet); else bRet = false; } |