Tint2conf: use bool instead of int for border sides (issue #580)

This commit is contained in:
o9000
2016-05-18 23:22:48 +02:00
parent 50c2f72a66
commit 285afd22ad
2 changed files with 24 additions and 24 deletions

View File

@@ -115,10 +115,10 @@ void config_write_backgrounds(FILE *fp)
int r;
int b;
int sideTop;
int sideBottom;
int sideLeft;
int sideRight;
gboolean sideTop;
gboolean sideBottom;
gboolean sideLeft;
gboolean sideRight;
GdkColor *fillColor;
int fillOpacity;
GdkColor *borderColor;