diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-11-11 15:32:57 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-11-11 15:32:57 +0000 |
commit | 9b6b1cc06cd9fdb18be644248577eae22ef6ee5f (patch) | |
tree | 0b1f32ca805f005c336c910226f79dfef7115133 /pango/pangowin32-private.h | |
parent | 3d3be7b21de8ba776faffc560cab565a0d7d5022 (diff) | |
download | pango-9b6b1cc06cd9fdb18be644248577eae22ef6ee5f.tar.gz |
Add code to call SetTextAlign, but commented out.
2000-11-11 Tor Lillqvist <tml@iki.fi>
* pango/pangowin32.c (pango_win32_render): Add code to call
SetTextAlign, but commented out.
* pango/makefile.mingw.in (PANGO_OBJS): Add new objects.
* pango/pango.def: Add new functions.
Diffstat (limited to 'pango/pangowin32-private.h')
-rw-r--r-- | pango/pangowin32-private.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pango/pangowin32-private.h b/pango/pangowin32-private.h index 08ab4ac2..e5c62e7b 100644 --- a/pango/pangowin32-private.h +++ b/pango/pangowin32-private.h @@ -22,7 +22,9 @@ #ifndef __PANGOWIN32_PRIVATE_H__ #define __PANGOWIN32_PRIVATE_H__ -/* Just for debugging, will be removed */ +#define DEBUGGING 1 + +#if defined(DEBUGGING) && DEBUGGING #ifdef __GNUC__ #define PING(printlist) \ (g_print ("%s:%d ", __PRETTY_FUNCTION__, __LINE__), \ @@ -34,6 +36,9 @@ g_print printlist, \ g_print ("\n")) #endif +#else /* !DEBUGGING */ +#define PING(printlist) +#endif #include "pango-modules.h" #include "pangowin32.h" |