keymap: Fix unused variable warning.

These constants are not used when building on the host, move them inside
the appropriate ifdef.
This commit is contained in:
Adrien Destugues 2015-01-14 16:40:37 +01:00
parent 0b90f99bc3
commit 684eb9df1e

View File

@ -805,10 +805,10 @@ Keymap::_SaveSourceText(FILE* file)
{
#endif
#ifdef HAIKU_TARGET_PLATFORM_HAIKU
static const rgb_color kCommentColor = (rgb_color){200, 92, 92, 255};
static const rgb_color kTextColor = (rgb_color){0, 0, 0, 255};
#ifdef HAIKU_TARGET_PLATFORM_HAIKU
BFont font = *be_fixed_font;
if (runs != NULL) {