From 0c73a7fb80e0fc59f1fbde07053bd55fe03dd3cc Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 15 Apr 2015 23:07:43 -0400 Subject: Fixed Unix backend build errors. Impressively, IT STILL WORKS! Now to fix the warnings... --- new/unix/entry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'new/unix/entry.c') 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; -- cgit v1.2.3