diff options
author | Lauris Kaplinski <lauris@src.gnome.org> | 2000-08-20 08:02:10 +0800 |
---|---|---|
committer | Lauris Kaplinski <lauris@src.gnome.org> | 2000-08-20 08:02:10 +0800 |
commit | 9a88f3d4d6efd4a7bdff4981537596aabc4d0433 (patch) | |
tree | 7e21227ecc3c004551dbd89cb7bfacee18ad618a /widgets/table/e-table-size-test.c | |
parent | 1a2372438209e8aa26310ebec78d2e58707cfe57 (diff) | |
download | gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar.gz gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar.bz2 gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar.lz gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar.xz gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.tar.zst gsoc2013-evolution-9a88f3d4d6efd4a7bdff4981537596aabc4d0433.zip |
First step moving to UTF-8 strings
svn path=/trunk/; revision=4885
Diffstat (limited to 'widgets/table/e-table-size-test.c')
-rw-r--r-- | widgets/table/e-table-size-test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/table/e-table-size-test.c b/widgets/table/e-table-size-test.c index b3a2cbbe18..2bc18235e8 100644 --- a/widgets/table/e-table-size-test.c +++ b/widgets/table/e-table-size-test.c @@ -123,7 +123,13 @@ my_row_count (ETableModel *etc, void *data) static void * my_value_at (ETableModel *etc, int col, int row, void *data) { + static guchar t[] = {'A', 0xc3, 0x84, 0xc3, 0x95, 0xc3, 0x94, 0xc3, 0xb5, 0x00}; + +#if 0 if (col == 1) return "toshok@helixcode.com"; +#else + if (col == 1) return t; +#endif else if (col == 2) return "Chris Toshok"; else if (col == 3) return "43 Vicksburg, SF"; else if (col == 4) return "415-867-5309"; |