diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-09 06:34:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-09 06:34:59 +0800 |
commit | 578e668365ac32c5ceda83b30a596c0f72286dc9 (patch) | |
tree | be02929be9bebdb2a165616cd93a19d2dd92cb4d | |
parent | 32e9ba1991802f83ea577774c881f9cd6eb6c20e (diff) | |
download | gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar.gz gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar.bz2 gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar.lz gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar.xz gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.tar.zst gsoc2013-evolution-578e668365ac32c5ceda83b30a596c0f72286dc9.zip |
Images are now in $(datadir)/evolution/images instead of
* 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.
svn path=/trunk/; revision=19292
-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)); |