80 char limit fix.

This commit is contained in:
John Scipione
2011-11-13 15:47:27 -05:00
parent 912ab02b72
commit 3b1791fa15
+4 -2
View File
@@ -40,8 +40,10 @@ index_to_color_which(int32 index)
if (index >= 0 && index < kNumColors) {
if ((color_which)index < B_WINDOW_INACTIVE_BORDER_COLOR)
return (color_which)(index + 1);
else
return (color_which)(index + B_SUCCESS_COLOR - B_WINDOW_INACTIVE_BORDER_COLOR);
else {
return (color_which)(index + B_SUCCESS_COLOR
- B_WINDOW_INACTIVE_BORDER_COLOR);
}
}
return (color_which)-1;