Changed text for "Rotate Clockwise" and "Rotate Anticlockwise" to "Rotate +90" and "Rotate -90"

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5387 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2003-11-16 17:08:48 +00:00
parent f9f5f26473
commit bf461dbeb4
2 changed files with 6 additions and 6 deletions

View File

@ -51,8 +51,8 @@ const uint32 MSG_GOTO_PAGE = 'mGTP';
const uint32 MSG_FILE_NEXT = 'mFLN';
const uint32 MSG_FILE_PREV = 'mFLP';
const uint32 MSG_FIT_TO_WINDOW_SIZE = 'mFWS';
const uint32 MSG_ROTATE_CLOCKWISE = 'mRCW';
const uint32 MSG_ROTATE_ACLKWISE = 'mRAC';
const uint32 MSG_ROTATE_90 = 'mR90';
const uint32 MSG_ROTATE_270 = 'mR27';
const uint32 MSG_MIRROR_VERTICAL = 'mMIV';
const uint32 MSG_MIRROR_HORIZONTAL = 'mMIH';
const uint32 MSG_INVERT = 'mINV';

View File

@ -281,8 +281,8 @@ ShowImageWindow::LoadMenus(BMenuBar *pbar)
pmenu = new BMenu("Image");
AddItemMenu(pmenu, "Dither Image", MSG_DITHER_IMAGE, 0, 0, 'W', true);
pmenu->AddSeparatorItem();
AddItemMenu(pmenu, "Rotate Clockwise", MSG_ROTATE_CLOCKWISE, ']', 0, 'W', true);
AddItemMenu(pmenu, "Rotate Anticlockwise", MSG_ROTATE_ACLKWISE, '[', 0, 'W', true);
AddItemMenu(pmenu, "Rotate +90", MSG_ROTATE_90, ']', 0, 'W', true);
AddItemMenu(pmenu, "Rotate -90", MSG_ROTATE_270, '[', 0, 'W', true);
pmenu->AddSeparatorItem();
AddItemMenu(pmenu, "Mirror Vertical", MSG_MIRROR_VERTICAL, 0, 0, 'W', true);
AddItemMenu(pmenu, "Mirror Horizontal", MSG_MIRROR_HORIZONTAL, 0, 0, 'W', true);
@ -579,10 +579,10 @@ ShowImageWindow::MessageReceived(BMessage *pmsg)
fpImageView->NextFile();
break;
case MSG_ROTATE_CLOCKWISE:
case MSG_ROTATE_90:
fpImageView->Rotate(90);
break;
case MSG_ROTATE_ACLKWISE:
case MSG_ROTATE_270:
fpImageView->Rotate(270);
break;
case MSG_MIRROR_VERTICAL: