diff options
-rw-r--r-- | camel/ChangeLog | 7 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-folder.c | 16 |
2 files changed, 7 insertions, 16 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 018e5fc1e6..3f38c71419 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,12 @@ 2000-08-11 Chris Toshok <toshok@helixcode.com> + * providers/nntp/camel-nntp-folder.c + (camel_nntp_folder_class_init): remove get_name and get_full_name + assignments, since the camel-folder.c implementation does what we + need. + +2000-08-11 Chris Toshok <toshok@helixcode.com> + * providers/nntp/camel-nntp-store.c (camel_nntp_store_get_toplevel_dir): use g_get_home_dir, since evolution_dir isn't available in the providers. diff --git a/camel/providers/nntp/camel-nntp-folder.c b/camel/providers/nntp/camel-nntp-folder.c index 5beabb5587..87d401caca 100644 --- a/camel/providers/nntp/camel-nntp-folder.c +++ b/camel/providers/nntp/camel-nntp-folder.c @@ -134,20 +134,6 @@ nntp_folder_sync (CamelFolder *folder, gboolean expunge, camel_nntp_newsrc_write (store->newsrc); } -static const gchar * -nntp_folder_get_name (CamelFolder *folder) -{ - g_assert(0); - return NULL; -} - -static const gchar * -nntp_folder_get_full_name (CamelFolder *folder) -{ - g_assert(0); - return NULL; -} - static CamelFolder* nntp_folder_get_subfolder (CamelFolder *folder, const gchar *folder_name, @@ -375,8 +361,6 @@ camel_nntp_folder_class_init (CamelNNTPFolderClass *camel_nntp_folder_class) /* virtual method overload */ camel_folder_class->init = nntp_folder_init; camel_folder_class->sync = nntp_folder_sync; - camel_folder_class->get_name = nntp_folder_get_name; - camel_folder_class->get_full_name = nntp_folder_get_full_name; camel_folder_class->get_subfolder = nntp_folder_get_subfolder; camel_folder_class->get_message_count = nntp_folder_get_message_count; camel_folder_class->set_message_flags = nntp_folder_set_message_flags; |