summaryrefslogtreecommitdiff
path: root/callbacks_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-01 12:09:31 -0400
committerPietro Gagliardi <[email protected]>2014-07-01 12:09:31 -0400
commite04e5f5cad34aba8848bd423f81649dc068a8fc3 (patch)
tree31f23e7864c694cd8b811f8f11cbe6a259db5885 /callbacks_unix.go
parent607e710459a98a9c2f8c40bea85908e643a5fef6 (diff)
Converted the GTK+ backend to use the new uitask. Indeterminate progressbars no longer work; this will be fixed soon.
Diffstat (limited to 'callbacks_unix.go')
-rw-r--r--callbacks_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/callbacks_unix.go b/callbacks_unix.go
index b9ed870..2de1656 100644
--- a/callbacks_unix.go
+++ b/callbacks_unix.go
@@ -89,7 +89,7 @@ func our_idle_callback(what C.gpointer) C.gboolean {
return C.FALSE // remove this idle function; we're finished
}
-func gdk_threads_add_idle(idleop *gtkIdleOp) {
+func gdk_threads_add_idle_op(idleop *gtkIdleOp) {
C.gdk_threads_add_idle(C.GCallback(C.our_idle_callback),
C.gpointer(unsafe.Pointer(idleop)))
}