diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-11-02 15:15:06 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-11-02 15:15:06 +0000 |
commit | 574a12b091030a84f1f20ec4c1877ca5c52588d9 (patch) | |
tree | b185a414e9534f8bbd8bbe19a8d4b8018b0fb735 | |
parent | 7e60ca8e11d76fb2ecbbd7da33346f3b22a2ea5a (diff) |
switched g_canvas.h includes to use "" rather than <> so it can use g_canvas.h if its included in this folder
svn path=/trunk/externals/hcs/; revision=14256
-rw-r--r-- | canvas_name.c | 2 | ||||
-rw-r--r-- | cursor.c | 2 | ||||
-rw-r--r-- | sys_gui.c | 2 | ||||
-rw-r--r-- | window_name.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/canvas_name.c b/canvas_name.c index 18e1903..4f2f88c 100644 --- a/canvas_name.c +++ b/canvas_name.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <string.h> #include <m_pd.h> -#include <g_canvas.h> +#include "g_canvas.h" #define DEBUG(x) @@ -5,7 +5,7 @@ pd.tk, or cursor reset method could be done in help patch */ #include <stdlib.h> #include <string.h> #include <m_pd.h> -#include <g_canvas.h> +#include "g_canvas.h" #define POLLTIME 10 @@ -1,7 +1,7 @@ #include <stdio.h> #include <string.h> #include <m_pd.h> -#include <g_canvas.h> +#include "g_canvas.h" #define DEBUG(x) diff --git a/window_name.c b/window_name.c index 9e71460..b6ccd3d 100644 --- a/window_name.c +++ b/window_name.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <string.h> #include <m_pd.h> -#include <g_canvas.h> +#include "g_canvas.h" #define DEBUG(x) |