summaryrefslogtreecommitdiff
path: root/new/unix/entry.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-15 23:07:43 -0400
committerPietro Gagliardi <[email protected]>2015-04-15 23:07:43 -0400
commit0c73a7fb80e0fc59f1fbde07053bd55fe03dd3cc (patch)
tree6d42d55023b1ccf5feeba83dc08071966e922e3b /new/unix/entry.c
parente49436170aa547ec713b8510bec955985f09cb89 (diff)
Fixed Unix backend build errors. Impressively, IT STILL WORKS! Now to fix the warnings...
Diffstat (limited to 'new/unix/entry.c')
-rw-r--r--new/unix/entry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/new/unix/entry.c b/new/unix/entry.c
index a18b508..4731f68 100644
--- a/new/unix/entry.c
+++ b/new/unix/entry.c
@@ -19,12 +19,12 @@ static char *getText(uiEntry *e)
return g_strdup(gtk_entry_get_text(ENTRY(e)));
}
-static void uiEntrySetText(uiEntry *e, const char *text)
+static void setText(uiEntry *e, const char *text)
{
gtk_entry_set_text(ENTRY(e), text);
}
-uiControl *uiNewEntry(void)
+uiEntry *uiNewEntry(void)
{
struct entry *e;
GtkWidget *widget;