mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
s/int/gsize/ for g_file_get_contents() (found independently by
2003-05-29 Havoc Pennington <hp@redhat.com> * src/theme-parser.c (meta_theme_load): s/int/gsize/ for g_file_get_contents() (found independently by marcus@freebsd.org on SPARC and James Laska on s390x; #113661 * src/main.c (main): fix theme location mentioned in error message
This commit is contained in:
parent
d1a853557b
commit
051e404d09
@ -1,3 +1,12 @@
|
|||||||
|
2003-05-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
|
* src/theme-parser.c (meta_theme_load): s/int/gsize/ for
|
||||||
|
g_file_get_contents() (found independently by
|
||||||
|
marcus@freebsd.org on SPARC and James Laska on s390x;
|
||||||
|
#113661
|
||||||
|
|
||||||
|
* src/main.c (main): fix theme location mentioned in error message
|
||||||
|
|
||||||
2003-05-29 Ray Strode <halfline@hawaii.rr.com>
|
2003-05-29 Ray Strode <halfline@hawaii.rr.com>
|
||||||
|
|
||||||
Get and use double-click speed from GtkSettings (Bug #103218).
|
Get and use double-click speed from GtkSettings (Bug #103218).
|
||||||
|
@ -346,7 +346,7 @@ main (int argc, char **argv)
|
|||||||
|
|
||||||
if (!meta_ui_have_a_theme ())
|
if (!meta_ui_have_a_theme ())
|
||||||
meta_fatal (_("Could not find a theme! Be sure %s exists and contains the usual themes."),
|
meta_fatal (_("Could not find a theme! Be sure %s exists and contains the usual themes."),
|
||||||
METACITY_PKGDATADIR"/themes");
|
METACITY_DATADIR"/themes");
|
||||||
|
|
||||||
/* Connect to SM as late as possible - but before managing display,
|
/* Connect to SM as late as possible - but before managing display,
|
||||||
* or we might try to manage a window before we have the session
|
* or we might try to manage a window before we have the session
|
||||||
|
@ -4261,7 +4261,7 @@ meta_theme_load (const char *theme_name,
|
|||||||
GError *error;
|
GError *error;
|
||||||
ParseInfo info;
|
ParseInfo info;
|
||||||
char *text;
|
char *text;
|
||||||
int length;
|
gsize length;
|
||||||
char *theme_file;
|
char *theme_file;
|
||||||
char *theme_dir;
|
char *theme_dir;
|
||||||
MetaTheme *retval;
|
MetaTheme *retval;
|
||||||
|
Loading…
Reference in New Issue
Block a user