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:
Havoc Pennington 2003-05-30 04:52:12 +00:00 committed by Havoc Pennington
parent d1a853557b
commit 051e404d09
3 changed files with 11 additions and 2 deletions

View File

@ -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>
Get and use double-click speed from GtkSettings (Bug #103218).

View File

@ -346,7 +346,7 @@ main (int argc, char **argv)
if (!meta_ui_have_a_theme ())
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,
* or we might try to manage a window before we have the session

View File

@ -4261,7 +4261,7 @@ meta_theme_load (const char *theme_name,
GError *error;
ParseInfo info;
char *text;
int length;
gsize length;
char *theme_file;
char *theme_dir;
MetaTheme *retval;