diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-11-20 17:19:01 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-11-20 17:19:01 +0100 |
commit | 8d4eecc5e876f5ead8984492ab482c00a9dcb511 (patch) | |
tree | 7411ee31fb1ec3c7651ea294eb5aaeddd9be477c /src/gui_mac.c | |
parent | d59762dcb6f3dd15fd1e91745561c4558a7b75a6 (diff) | |
download | vim-git-8d4eecc5e876f5ead8984492ab482c00a9dcb511.tar.gz |
updated for version 7.3.723v7.3.723
Problem: Various tiny problems.
Solution: Various tiny fixes.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index 69c190301..5ba9fec8f 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -5728,7 +5728,7 @@ gui_mch_dialog( case VIM_QUESTION: useIcon = kNoteIcon; break; case VIM_WARNING: useIcon = kCautionIcon; break; case VIM_ERROR: useIcon = kStopIcon; break; - default: useIcon = kStopIcon; + default: useIcon = kStopIcon; } AppendDITL(theDialog, iconDITL, overlayDITL); ReleaseResource(iconDITL); |