Skip to content

Commit

Permalink
TableConvert: Mark local functions static
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Jul 8, 2012
1 parent 0462ed5 commit 6e7cf30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tableconvert/src/tableconvert.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static GString* convert_to_table_sql(gchar** rows)
return replacement_str;
}

void convert_to_table(gboolean header)
static void convert_to_table(gboolean header)
{
GeanyDocument *doc = NULL;
doc = document_get_current();
Expand Down Expand Up @@ -262,7 +262,7 @@ void convert_to_table(gboolean header)
return;
}

void kb_convert_to_table(G_GNUC_UNUSED guint key_id)
static void kb_convert_to_table(G_GNUC_UNUSED guint key_id)
{
g_return_if_fail(document_get_current() != NULL);
convert_to_table(TRUE);
Expand All @@ -278,7 +278,7 @@ static void init_keybindings(void)
_("Convert selection to table"), NULL);
}

void cb_table_convert(G_GNUC_UNUSED GtkMenuItem *menuitem, G_GNUC_UNUSED gpointer gdata)
static void cb_table_convert(G_GNUC_UNUSED GtkMenuItem *menuitem, G_GNUC_UNUSED gpointer gdata)
{
convert_to_table(TRUE);
}
Expand Down

0 comments on commit 6e7cf30

Please sign in to comment.