diff src/lib-index/mail-index-dummy-view.c @ 6420:a8b515e1a26f HEAD

Removed _ prefixes from function names.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 13:25:23 +0300
parents 6a64e64fa3a3
children 65c69a53a7be
line wrap: on
line diff
--- a/src/lib-index/mail-index-dummy-view.c	Sun Sep 16 12:51:41 2007 +0300
+++ b/src/lib-index/mail-index-dummy-view.c	Sun Sep 16 13:25:23 2007 +0300
@@ -5,7 +5,7 @@
 #include "mail-index-private.h"
 #include "mail-index-view-private.h"
 
-static void _dummy_view_close(struct mail_index_view *view ATTR_UNUSED)
+static void dummy_view_close(struct mail_index_view *view ATTR_UNUSED)
 {
 	i_assert(view->refcount == 0);
 
@@ -14,14 +14,14 @@
 }
 
 static uint32_t
-_dummy_view_get_message_count(struct mail_index_view *view ATTR_UNUSED)
+dummy_view_get_message_count(struct mail_index_view *view ATTR_UNUSED)
 {
 	return (uint32_t)-3;
 }
 
 static struct mail_index_view_vfuncs dummy_view_vfuncs = {
-	_dummy_view_close,
-	_dummy_view_get_message_count,
+	dummy_view_close,
+	dummy_view_get_message_count,
 	NULL,
 	NULL,
 	NULL,