add geany plugins

This commit is contained in:
Erkan IŞIK
2020-04-16 14:50:38 +03:00
parent 56e0da7f26
commit b72027c995
3 changed files with 170 additions and 0 deletions
@@ -0,0 +1,21 @@
diff --git a/overview/overview/overviewscintilla.c b/overview/overview/overviewscintilla.c
index 41840638..7158179e 100644
--- a/overview/overview/overviewscintilla.c
+++ b/overview/overview/overviewscintilla.c
@@ -796,14 +796,14 @@ overview_scintilla_get_property (GObject *object,
break;
case PROP_OVERLAY_COLOR:
{
- OverviewColor color;
+ OverviewColor color = { 0 };
overview_scintilla_get_overlay_color (self, &color);
g_value_set_boxed (value, &color);
break;
}
case PROP_OVERLAY_OUTLINE_COLOR:
{
- OverviewColor color;
+ OverviewColor color = { 0 };
overview_scintilla_get_overlay_outline_color (self, &color);
g_value_set_boxed (value, &color);
break;