Kaydet (Commit) ac0505ee authored tarafından Enrico Tröger's avatar Enrico Tröger

Fix build with USE_GIO_FILEMON by declaring the file changed status colour conditionally.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3717 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 61f89d5c
......@@ -2702,7 +2702,9 @@ const GdkColor *document_get_status_color(GeanyDocument *doc)
{
static GdkColor red = {0, 0xFFFF, 0, 0};
static GdkColor green = {0, 0, 0x7FFF, 0};
/*static GdkColor orange = {0, 0xFFFF, 0x7FFF, 0};*/
#if defined(HAVE_GIO) && defined(USE_GIO_FILEMON)
static GdkColor orange = {0, 0xFFFF, 0x7FFF, 0};
#endif
GdkColor *color = NULL;
g_return_val_if_fail(doc != NULL, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment