diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-10 04:39:18 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:08:46 +0800 |
commit | 265b23b1eb70593a5c99bc1aa00fcc7a66000739 (patch) | |
tree | 32dff83390622dbd24d3eccaa92f887e54dd0288 /mail/em-folder-selection-button.h | |
parent | 77d14c71c1c4acd82287be23d49e894044af74b5 (diff) | |
download | gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar.gz gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar.bz2 gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar.lz gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar.xz gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.tar.zst gsoc2013-evolution-265b23b1eb70593a5c99bc1aa00fcc7a66000739.zip |
EMFolderSelectionButton: Add a "folder-uri" property.
And rename a couple get/set functions to match the property name.
Diffstat (limited to 'mail/em-folder-selection-button.h')
-rw-r--r-- | mail/em-folder-selection-button.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-folder-selection-button.h b/mail/em-folder-selection-button.h index 8b31100e84..91c5e3ae78 100644 --- a/mail/em-folder-selection-button.h +++ b/mail/em-folder-selection-button.h @@ -75,11 +75,11 @@ const gchar * em_folder_selection_button_get_caption void em_folder_selection_button_set_caption (EMFolderSelectionButton *button, const gchar *caption); -const gchar * em_folder_selection_button_get_selection +const gchar * em_folder_selection_button_get_folder_uri (EMFolderSelectionButton *button); -void em_folder_selection_button_set_selection +void em_folder_selection_button_set_folder_uri (EMFolderSelectionButton *button, - const gchar *uri); + const gchar *folder_uri); void em_folder_selection_button_set_backend (EMFolderSelectionButton *button, EMailBackend *backend); |