summaryrefslogtreecommitdiff
path: root/area_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-19 22:32:38 -0400
committerPietro Gagliardi <[email protected]>2014-05-19 22:32:38 -0400
commita48dd80add7760e58b8e4e639183ec204ac699af (patch)
tree18c61ee6c03dca1ab33fc7eecddaa0694c2710b7 /area_unix.go
parent4e820e86fca050a7f7b25449629573ca18c0080e (diff)
Removed the extra #cgo directives from the Unix files. cgo collects directives from ALL files, rather than using each file's directive individually, so having them combined like this is pointless. Instead, the #cgo directives are (or is, since there's only one) in uitask_unix.go. Will do the same for Mac next; this will help since we're going to add a CFLAGS value afterward.
Diffstat (limited to 'area_unix.go')
-rw-r--r--area_unix.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/area_unix.go b/area_unix.go
index 2d3522d..92e9f94 100644
--- a/area_unix.go
+++ b/area_unix.go
@@ -10,7 +10,6 @@ import (
"image"
)
-// #cgo pkg-config: gtk+-3.0
// #include "gtk_unix.h"
// extern gboolean our_area_draw_callback(GtkWidget *, cairo_t *, gpointer);
// extern gboolean our_area_button_press_event_callback(GtkWidget *, GdkEvent *, gpointer);