Fix wrong pointer usage.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3097 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-10-15 14:14:31 +00:00
parent 1096ec427c
commit ecafbecdd0

View File

@ -470,7 +470,7 @@ void win32_show_color_dialog(const gchar *colour)
(guint) (utils_scale_round(GetGValue(rgb_current), 255)), (guint) (utils_scale_round(GetGValue(rgb_current), 255)),
(guint) (utils_scale_round(GetBValue(rgb_current), 255))); (guint) (utils_scale_round(GetBValue(rgb_current), 255)));
editor_insert_color(doc, hex); editor_insert_color(doc->editor, hex);
} }
g_free(hex); g_free(hex);
} }