mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Don't create a big string, since Visual C++ doesn't like strings longer
2005-11-23 Matthias Clasen <mclasen@redhat.com> * gtk/updateiconcache.c (write_csource): Don't create a big string, since Visual C++ doesn't like strings longer than 64k. (#322238, Kazuki IWAMOTO
This commit is contained in:
parent
fce9359e47
commit
8007463815
@ -1,5 +1,9 @@
|
|||||||
2005-11-23 Matthias Clasen <mclasen@redhat.com>
|
2005-11-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/updateiconcache.c (write_csource): Don't create a big
|
||||||
|
string, since Visual C++ doesn't like strings longer than 64k.
|
||||||
|
(#322238, Kazuki IWAMOTO
|
||||||
|
|
||||||
* gtk/gtkentry.c: Include gtkimcontextsimple.h (#322235,
|
* gtk/gtkentry.c: Include gtkimcontextsimple.h (#322235,
|
||||||
Kazuki IWAMOTO)
|
Kazuki IWAMOTO)
|
||||||
|
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2005-11-23 Matthias Clasen <mclasen@redhat.com>
|
2005-11-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/updateiconcache.c (write_csource): Don't create a big
|
||||||
|
string, since Visual C++ doesn't like strings longer than 64k.
|
||||||
|
(#322238, Kazuki IWAMOTO
|
||||||
|
|
||||||
* gtk/gtkentry.c: Include gtkimcontextsimple.h (#322235,
|
* gtk/gtkentry.c: Include gtkimcontextsimple.h (#322235,
|
||||||
Kazuki IWAMOTO)
|
Kazuki IWAMOTO)
|
||||||
|
|
||||||
|
@ -1247,9 +1247,7 @@ write_csource (const gchar *path)
|
|||||||
{
|
{
|
||||||
gchar *cache_path;
|
gchar *cache_path;
|
||||||
gchar *data;
|
gchar *data;
|
||||||
guint8 d;
|
|
||||||
gsize len;
|
gsize len;
|
||||||
gint pos;
|
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
cache_path = g_build_filename (path, CACHE_NAME, NULL);
|
cache_path = g_build_filename (path, CACHE_NAME, NULL);
|
||||||
@ -1265,40 +1263,18 @@ write_csource (const gchar *path)
|
|||||||
g_printf ("#else\n");
|
g_printf ("#else\n");
|
||||||
g_printf ("static const guint8 %s[] = \n", var_name);
|
g_printf ("static const guint8 %s[] = \n", var_name);
|
||||||
g_printf ("#endif\n");
|
g_printf ("#endif\n");
|
||||||
g_printf ("{ ""\n \"");
|
|
||||||
|
|
||||||
pos = 3;
|
g_printf ("{\n");
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len - 1; i++)
|
||||||
{
|
{
|
||||||
d = data[i];
|
if (i %12 == 0)
|
||||||
if (pos > 70)
|
g_printf (" ");
|
||||||
{
|
g_printf ("0x%02x, ", (guint8)data[i]);
|
||||||
g_printf ("\"\n \"");
|
if (i % 12 == 11)
|
||||||
pos = 3;
|
g_printf ("\n");
|
||||||
}
|
}
|
||||||
if (d < 33 || d > 126 || d == '?')
|
|
||||||
{
|
g_printf ("0x%02x\n};\n", (guint8)data[i]);
|
||||||
g_printf ("\\%.3o", d);
|
|
||||||
pos += 4;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (d == '\\')
|
|
||||||
{
|
|
||||||
g_printf ("\\\\");
|
|
||||||
pos += 2;
|
|
||||||
}
|
|
||||||
else if (d == '"')
|
|
||||||
{
|
|
||||||
g_printf ("\\\"");
|
|
||||||
pos += 2;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
g_printf ("%c", d);
|
|
||||||
pos += 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
g_printf ("\"};\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static GOptionEntry args[] = {
|
static GOptionEntry args[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user