Skip to content
Snippets Groups Projects
Commit 16a6552c authored by Andre Miranda's avatar Andre Miranda
Browse files

Remove dangling function

parent a5572185
No related branches found
No related tags found
No related merge requests found
...@@ -302,17 +302,6 @@ static void parse_geometry(DictData *dd, const gchar *str) ...@@ -302,17 +302,6 @@ static void parse_geometry(DictData *dd, const gchar *str)
} }
static gdouble scale_round(gdouble val, gdouble factor)
{
/*val = floor(val * factor + 0.5);*/
val = floor(val);
val = MAX(val, 0);
val = MIN(val, factor);
return val;
}
static gchar *get_spell_program(void) static gchar *get_spell_program(void)
{ {
gchar *path; gchar *path;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment