diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-23 16:06:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-29 10:41:39 +0200 |
commit | da9361374c45da7c3bda803aaed52485fb3b12d7 (patch) | |
tree | 15aae8b9b8ffad3ad59281c68bb905596774f87f /sd/source/ui/func | |
parent | 1f1b9b9ff56d8649b22b78c5696a36b078ea9dcf (diff) |
convert SDRESC_ constants to scoped enum
Change-Id: I9488088d006ceae15368fae775aeebebfa7ce229
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fuediglu.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/func/fuediglu.cxx b/sd/source/ui/func/fuediglu.cxx index 0030d8343dc5..39bc9a2a4d79 100644 --- a/sd/source/ui/func/fuediglu.cxx +++ b/sd/source/ui/func/fuediglu.cxx @@ -395,29 +395,29 @@ void FuEditGluePoints::ReceiveRequest(SfxRequest& rReq) case SID_GLUE_ESCDIR_LEFT: { - mpView->SetMarkedGluePointsEscDir( SDRESC_LEFT, - !mpView->IsMarkedGluePointsEscDir( SDRESC_LEFT ) ); + mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::LEFT, + !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::LEFT ) ); } break; case SID_GLUE_ESCDIR_RIGHT: { - mpView->SetMarkedGluePointsEscDir( SDRESC_RIGHT, - !mpView->IsMarkedGluePointsEscDir( SDRESC_RIGHT ) ); + mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::RIGHT, + !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::RIGHT ) ); } break; case SID_GLUE_ESCDIR_TOP: { - mpView->SetMarkedGluePointsEscDir( SDRESC_TOP, - !mpView->IsMarkedGluePointsEscDir( SDRESC_TOP ) ); + mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::TOP, + !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::TOP ) ); } break; case SID_GLUE_ESCDIR_BOTTOM: { - mpView->SetMarkedGluePointsEscDir( SDRESC_BOTTOM, - !mpView->IsMarkedGluePointsEscDir( SDRESC_BOTTOM ) ); + mpView->SetMarkedGluePointsEscDir( SdrEscapeDirection::BOTTOM, + !mpView->IsMarkedGluePointsEscDir( SdrEscapeDirection::BOTTOM ) ); } break; |