aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-08-12 05:32:55 +0800
committerChris Toshok <toshok@src.gnome.org>2000-08-12 05:32:55 +0800
commit2900d01d082e4b17fabd34edc873887b92b66935 (patch)
treeaaaf8e4118dfd7af2c5f3f246317b9e1b6e554b2
parent324e5fc9a75d530ae9f2d7478e4eb5c61beed6c2 (diff)
downloadgsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar.gz
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar.bz2
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar.lz
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar.xz
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.tar.zst
gsoc2013-evolution-2900d01d082e4b17fabd34edc873887b92b66935.zip
remove get_name and get_full_name assignments, since the camel-folder.c
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. svn path=/trunk/; revision=4755
-rw-r--r--camel/ChangeLog7
-rw-r--r--camel/providers/nntp/camel-nntp-folder.c16
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;