diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 6 | ||||
-rw-r--r-- | modules/basic/basic-win32.c | 4 |
6 files changed, 32 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2004-02-28 Hans Breuer <hans@breuer.org> + * pango/modules/basic/basic-win32.c : use uniscribe_scripts instead of + uniscribe_ranges (does show only with HAVE_USP10_H, which I don't) + patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135504 + +2004-02-28 Hans Breuer <hans@breuer.org> + * pango/pango.def : updated externals including patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135518 diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 93ac9ffc..7f5f45dc 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,5 +1,11 @@ 2004-02-28 Hans Breuer <hans@breuer.org> + * pango/modules/basic/basic-win32.c : use uniscribe_scripts instead of + uniscribe_ranges (does show only with HAVE_USP10_H, which I don't) + patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135504 + +2004-02-28 Hans Breuer <hans@breuer.org> + * pango/pango.def : updated externals including patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135518 diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 93ac9ffc..7f5f45dc 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,5 +1,11 @@ 2004-02-28 Hans Breuer <hans@breuer.org> + * pango/modules/basic/basic-win32.c : use uniscribe_scripts instead of + uniscribe_ranges (does show only with HAVE_USP10_H, which I don't) + patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135504 + +2004-02-28 Hans Breuer <hans@breuer.org> + * pango/pango.def : updated externals including patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135518 diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 93ac9ffc..7f5f45dc 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,5 +1,11 @@ 2004-02-28 Hans Breuer <hans@breuer.org> + * pango/modules/basic/basic-win32.c : use uniscribe_scripts instead of + uniscribe_ranges (does show only with HAVE_USP10_H, which I don't) + patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135504 + +2004-02-28 Hans Breuer <hans@breuer.org> + * pango/pango.def : updated externals including patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135518 diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 93ac9ffc..7f5f45dc 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,5 +1,11 @@ 2004-02-28 Hans Breuer <hans@breuer.org> + * pango/modules/basic/basic-win32.c : use uniscribe_scripts instead of + uniscribe_ranges (does show only with HAVE_USP10_H, which I don't) + patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135504 + +2004-02-28 Hans Breuer <hans@breuer.org> + * pango/pango.def : updated externals including patch from J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135518 diff --git a/modules/basic/basic-win32.c b/modules/basic/basic-win32.c index 1d50c8c5..4b173f0d 100644 --- a/modules/basic/basic-win32.c +++ b/modules/basic/basic-win32.c @@ -1163,8 +1163,8 @@ PANGO_MODULE_ENTRY(list) (PangoEngineInfo **engines, script_engines[0].ranges = ranges; script_engines[0].n_ranges = ranges->len; #else - script_engines[0].ranges = uniscribe_ranges; - script_engines[0].n_ranges = G_N_ELEMENTS (uniscribe_ranges); + script_engines[0].scripts = uniscribe_scripts; + script_engines[0].n_scripts = G_N_ELEMENTS (uniscribe_scripts); #endif } #endif |