diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-04-04 09:37:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-04-04 12:52:15 +0100 |
commit | 0f89d964b272c2087dbc865bc0a60edfdde8551f (patch) | |
tree | 3e3d074d02e93ade639ae0beb143294fe433dc2c /sw/source/uibase/shells | |
parent | c4dba436df42cef4f0048994c38dc137266ebaf9 (diff) |
coverity#1403732 Mixing enum types
and
coverity#1403735 Mixing enum types
coverity#1403737 Mixing enum types
Change-Id: I278b7d5116d4157e6aa4483d8eef42325e4bc03b
Diffstat (limited to 'sw/source/uibase/shells')
-rw-r--r-- | sw/source/uibase/shells/drwbassh.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/shells/drwbassh.cxx b/sw/source/uibase/shells/drwbassh.cxx index 361d69bf81fa..ee7412daf952 100644 --- a/sw/source/uibase/shells/drwbassh.cxx +++ b/sw/source/uibase/shells/drwbassh.cxx @@ -772,7 +772,7 @@ IMPL_LINK(SwDrawBaseShell, ValidatePosition, SvxSwFrameValidation&, rValidation, // OD 18.09.2003 #i18732# - adjustment for allowing vertical position // aligned to page for fly frame anchored to paragraph or to character. - const RndStdIds eAnchorType = static_cast<RndStdIds >(rValidation.nAnchorType); + const RndStdIds eAnchorType = rValidation.nAnchorType; const SwPosition* pContentPos = nullptr; SdrView* pSdrView = pSh->GetDrawView(); const SdrMarkList& rMarkList = pSdrView->GetMarkedObjectList(); |