HELLO #COMMITS!!!

2003-06-03  Andrew Sobala  <aes@gnome.org>

	* themus-properties-view.c: fix description word wrapping
	* theme-method.c: gcc 2.x compile
This commit is contained in:
Andrew Sobala 2003-06-03 22:32:37 +00:00 committed by Andrew Sobala
parent 4cd7796a0a
commit e3d66e9268
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2003-06-03 Andrew Sobala <aes@gnome.org>
* themus-properties-view.c: fix description word wrapping
* theme-method.c: gcc 2.x compile
2003-05-13 Andrew Sobala <aes@gnome.org> 2003-05-13 Andrew Sobala <aes@gnome.org>
* Moved to control-center. * Moved to control-center.

View file

@ -502,6 +502,7 @@ do_get_file_info(GnomeVFSMethod *method,
GnomeVFSContext *context) GnomeVFSContext *context)
{ {
gchar *path = NULL; gchar *path = NULL;
GnomeThemeMetaInfo *theme;
path = get_path_from_uri(uri); path = get_path_from_uri(uri);
if (!path) if (!path)
@ -529,7 +530,6 @@ do_get_file_info(GnomeVFSMethod *method,
} }
else { else {
g_free (path); g_free (path);
GnomeThemeMetaInfo *theme;
theme = theme_meta_info_find (uri); theme = theme_meta_info_find (uri);
if (theme) if (theme)

View file

@ -164,7 +164,7 @@ themus_theme_properties_view_init (ThemusThemePropertiesView *view)
gtk_label_set_markup (GTK_LABEL (view->details->description_caption), gtk_label_set_markup (GTK_LABEL (view->details->description_caption),
g_strconcat ("<b>", _("Description"), ":</b>", NULL)); g_strconcat ("<b>", _("Description"), ":</b>", NULL));
view->details->description = gtk_label_new (NULL); view->details->description = gtk_label_new (NULL);
gtk_label_set_line_wrap (GTK_LABEL (view->details->description_caption), TRUE); gtk_label_set_line_wrap (GTK_LABEL (view->details->description), TRUE);
view->details->gtk_caption = gtk_label_new (NULL); view->details->gtk_caption = gtk_label_new (NULL);
gtk_label_set_markup (GTK_LABEL (view->details->gtk_caption), gtk_label_set_markup (GTK_LABEL (view->details->gtk_caption),
g_strconcat ("<b>", _("Control theme"), ":</b>", NULL)); g_strconcat ("<b>", _("Control theme"), ":</b>", NULL));