comparison src/gui_mac.c @ 3210:767bb493e7d3 v7.3.375

updated for version 7.3.375 Problem: Duplicate return statement. Solution: Remove the superfluous one. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Dec 2011 15:07:29 +0100
parents fd4224d9ee09
children ee138f29259e
comparison
equal deleted inserted replaced
3209:7104cd9e82c1 3210:767bb493e7d3
3214 void 3214 void
3215 gui_mch_new_colors(void) 3215 gui_mch_new_colors(void)
3216 { 3216 {
3217 /* TODO: 3217 /* TODO:
3218 * This proc is called when Normal is set to a value 3218 * This proc is called when Normal is set to a value
3219 * so what msut be done? I don't know 3219 * so what must be done? I don't know
3220 */ 3220 */
3221 } 3221 }
3222 3222
3223 /* 3223 /*
3224 * Open the GUI window which was created by a call to gui_mch_init(). 3224 * Open the GUI window which was created by a call to gui_mch_init().
3301 if (status != noErr) 3301 if (status != noErr)
3302 return FAIL; 3302 return FAIL;
3303 *x = bounds.left; 3303 *x = bounds.left;
3304 *y = bounds.top; 3304 *y = bounds.top;
3305 return OK; 3305 return OK;
3306 return FAIL;
3307 } 3306 }
3308 3307
3309 /* 3308 /*
3310 * Set the position of the top left corner of the window to the given 3309 * Set the position of the top left corner of the window to the given
3311 * coordinates. 3310 * coordinates.