summaryrefslogtreecommitdiff
path: root/new/unix/label.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/label.c
parente49436170aa547ec713b8510bec955985f09cb89 (diff)
Fixed Unix backend build errors. Impressively, IT STILL WORKS! Now to fix the warnings...
Diffstat (limited to 'new/unix/label.c')
-rw-r--r--new/unix/label.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/new/unix/label.c b/new/unix/label.c
index caf7d55..1a7aa28 100644
--- a/new/unix/label.c
+++ b/new/unix/label.c
@@ -25,7 +25,7 @@ static void setText(uiLabel *l, const char *text)
gtk_label_set_text(LABEL(l), text);
}
-uiControl *uiNewLabel(const char *text)
+uiLabel *uiNewLabel(const char *text)
{
struct label *l;
GtkWidget *widget;