summaryrefslogtreecommitdiff
path: root/new/unix/entry.c
diff options
context:
space:
mode:
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;