summaryrefslogtreecommitdiff
path: root/examples/gtk-clutter-events.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gtk-clutter-events.c')
-rw-r--r--examples/gtk-clutter-events.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/gtk-clutter-events.c b/examples/gtk-clutter-events.c
index d357b78..a433af5 100644
--- a/examples/gtk-clutter-events.c
+++ b/examples/gtk-clutter-events.c
@@ -3,6 +3,10 @@
#include <clutter-gtk/clutter-gtk.h>
+#ifndef EXAMPLES_DATADIR
+#define EXAMPLES_DATADIR "."
+#endif
+
typedef struct {
GtkWidget *window;
@@ -181,7 +185,7 @@ main (gint argc, gchar **argv)
NULL);
/* Create the main texture that the spin buttons manipulate */
- pixbuf = gdk_pixbuf_new_from_file ("redhand.png", NULL);
+ pixbuf = gdk_pixbuf_new_from_file (EXAMPLES_DATADIR G_DIR_SEPARATOR_S "redhand.png", NULL);
if (pixbuf == NULL)
g_error ("Unable to load pixbuf\n");