Revision: 5337 http://geany.svn.sourceforge.net/geany/?rev=5337&view=rev Author: ntrel Date: 2010-10-28 11:45:14 +0000 (Thu, 28 Oct 2010)
Log Message: ----------- Fix using gint* for integer settings.
Modified Paths: -------------- trunk/src/stash.c
Modified: trunk/src/stash.c =================================================================== --- trunk/src/stash.c 2010-10-27 16:28:28 UTC (rev 5336) +++ trunk/src/stash.c 2010-10-28 11:45:14 UTC (rev 5337) @@ -154,7 +154,7 @@ static void handle_integer_setting(StashGroup *group, StashPref *se, GKeyFile *config, SettingAction action) { - gboolean *setting = se->setting; + gint *setting = se->setting;
switch (action) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.