changeset 4609:30782d57c7e6

We already require Glib >= 2.14, so these #if's for checking >= 2.12 are now obsolete and thus got removed.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Jun 2008 00:53:37 +0300
parents 23a9ded30c70
children c9b0da38d07d
files src/audtool/audtool_handlers_playlist.c src/audtool/audtool_handlers_playqueue.c
diffstat 2 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/audtool/audtool_handlers_playlist.c	Wed Jun 04 23:30:29 2008 +0300
+++ b/src/audtool/audtool_handlers_playlist.c	Thu Jun 05 00:53:37 2008 +0300
@@ -252,9 +252,7 @@
 				gint stride;
 				stride = g_utf8_next_char(p) - p;
 				if(g_unichar_iswide(g_utf8_get_char(p))
-#if ( (GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION >= 12) )
 				   || g_unichar_iswide_cjk(g_utf8_get_char(p))
-#endif
                                 ){
 					column += (stride - 2);
 				}
--- a/src/audtool/audtool_handlers_playqueue.c	Wed Jun 04 23:30:29 2008 +0300
+++ b/src/audtool/audtool_handlers_playqueue.c	Thu Jun 05 00:53:37 2008 +0300
@@ -192,9 +192,7 @@
 				gint stride;
 				stride = g_utf8_next_char(p) - p;
 				if(g_unichar_iswide(g_utf8_get_char(p))
-#if ( (GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION >= 12) )
 				   || g_unichar_iswide_cjk(g_utf8_get_char(p))
-#endif
 				){
 					column += (stride - 2);
 				}