diff options
-rw-r--r-- | shell/ChangeLog | 8 | ||||
-rw-r--r-- | shell/Makefile.am | 2 | ||||
-rw-r--r-- | shell/e-folder-list.c | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index c854132d67..7fea99e757 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,13 @@ 2003-01-08 Ettore Perazzoli <ettore@ximian.com> + * Makefile.am: Images are now in $(datadir)/evolution/images + instead of $(datadir)/images/evolution. + + * e-folder-list.c (e_folder_list_class_init): Remove + "EFolderList::" prefix from the properties. + +2003-01-08 Ettore Perazzoli <ettore@ximian.com> + * Makefile.am (evolution_LDFLAGS): -export-dynamic so custom widgets in libglade work. diff --git a/shell/Makefile.am b/shell/Makefile.am index 275f3dc844..d73e4dfa50 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -7,7 +7,7 @@ INCLUDES = \ -I$(top_srcdir)/libical/src/libical \ -I$(top_builddir)/libical/src/libical \ -I$(top_srcdir) \ - -DEVOLUTION_IMAGES=\""$(datadir)/images/evolution"\" \ + -DEVOLUTION_IMAGES=\""$(datadir)/evolution/images"\" \ -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DEVOLUTION_GLADEDIR=\"$(datadir)/evolution/glade\" \ diff --git a/shell/e-folder-list.c b/shell/e-folder-list.c index 3a0a0be264..2fad48f045 100644 --- a/shell/e-folder-list.c +++ b/shell/e-folder-list.c @@ -254,13 +254,13 @@ e_folder_list_class_init (EFolderListClass *klass) E_OBJECT_CLASS_ADD_SIGNALS (object_class, signals, LAST_SIGNAL); g_object_class_install_property (object_class, PROP_TITLE, - g_param_spec_string ("EFolderList::title", + g_param_spec_string ("title", NULL, NULL, NULL, G_PARAM_READWRITE)); g_object_class_install_property (object_class, PROP_POSSIBLE_TYPES, - g_param_spec_pointer ("EFolderList::possible_types", + g_param_spec_pointer ("possible_types", NULL, NULL, G_PARAM_READWRITE)); |