remove get_name and get_full_name assignments, since the camel-folder.c
authorChris Toshok <toshok@helixcode.com>
Fri, 11 Aug 2000 21:32:55 +0000 (21:32 +0000)
committerChris Toshok <toshok@src.gnome.org>
Fri, 11 Aug 2000 21:32:55 +0000 (21:32 +0000)
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.

camel/ChangeLog
camel/providers/nntp/camel-nntp-folder.c

index 018e5fc..3f38c71 100644 (file)
@@ -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.
index 5beabb5..87d401c 100644 (file)
@@ -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;