diff --git a/vfs-methods/themus/ChangeLog b/vfs-methods/themus/ChangeLog index bcaf261ae..750c26cf2 100644 --- a/vfs-methods/themus/ChangeLog +++ b/vfs-methods/themus/ChangeLog @@ -1,3 +1,8 @@ +2003-06-03 Andrew Sobala + + * themus-properties-view.c: fix description word wrapping + * theme-method.c: gcc 2.x compile + 2003-05-13 Andrew Sobala * Moved to control-center. diff --git a/vfs-methods/themus/theme-method.c b/vfs-methods/themus/theme-method.c index 7c35d8b3a..a056cf26e 100644 --- a/vfs-methods/themus/theme-method.c +++ b/vfs-methods/themus/theme-method.c @@ -502,6 +502,7 @@ do_get_file_info(GnomeVFSMethod *method, GnomeVFSContext *context) { gchar *path = NULL; + GnomeThemeMetaInfo *theme; path = get_path_from_uri(uri); if (!path) @@ -529,7 +530,6 @@ do_get_file_info(GnomeVFSMethod *method, } else { g_free (path); - GnomeThemeMetaInfo *theme; theme = theme_meta_info_find (uri); if (theme) diff --git a/vfs-methods/themus/themus-properties-view.c b/vfs-methods/themus/themus-properties-view.c index bb1f9c2bf..c978f32c7 100644 --- a/vfs-methods/themus/themus-properties-view.c +++ b/vfs-methods/themus/themus-properties-view.c @@ -164,7 +164,7 @@ themus_theme_properties_view_init (ThemusThemePropertiesView *view) gtk_label_set_markup (GTK_LABEL (view->details->description_caption), g_strconcat ("", _("Description"), ":", 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); gtk_label_set_markup (GTK_LABEL (view->details->gtk_caption), g_strconcat ("", _("Control theme"), ":", NULL));