80 char limit fix.
This commit is contained in:
@@ -40,8 +40,10 @@ index_to_color_which(int32 index)
|
|||||||
if (index >= 0 && index < kNumColors) {
|
if (index >= 0 && index < kNumColors) {
|
||||||
if ((color_which)index < B_WINDOW_INACTIVE_BORDER_COLOR)
|
if ((color_which)index < B_WINDOW_INACTIVE_BORDER_COLOR)
|
||||||
return (color_which)(index + 1);
|
return (color_which)(index + 1);
|
||||||
else
|
else {
|
||||||
return (color_which)(index + B_SUCCESS_COLOR - B_WINDOW_INACTIVE_BORDER_COLOR);
|
return (color_which)(index + B_SUCCESS_COLOR
|
||||||
|
- B_WINDOW_INACTIVE_BORDER_COLOR);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (color_which)-1;
|
return (color_which)-1;
|
||||||
|
|||||||
Reference in New Issue
Block a user