Patch: Fix TnyStreamCache class name



The StreamCache class was being registered with the wrong name. This was
causing much grief for the vala bindings generator.

Changelog entry:

* libtinymail/tny-stream-cache.c: Fix TnyStreamCache class name

P.S. This time I put an entry into ChangeLog as part of the patch. Is
this how you would like the patches to submitted?

Carl Simonson
simonsonc gmail com
commit d9dbc0ccfcc33318fd411972c444f3134dbdb2ba
Author: Carl Simonson <simonsonc gmail com>
Date:   Fri Oct 16 13:56:19 2009 -0500

    Fix TnyStreamCache class name
    
    The StreamCache class was being registered with the wrong name. This was
    causing much grief for the vala bindings generator.

diff --git a/ChangeLog b/ChangeLog
index 06270a6..574c66b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-16  Carl Simonson <simonsonc gmail com>
+
+	* libtinymail/tny-stream-cache.c: Fix TnyStreamCache class name
+
 2009-10-16  Jose Dapena Paz  <jdapena igalia com>
 
 	* Many build warning fixes.
diff --git a/libtinymail/tny-stream-cache.c b/libtinymail/tny-stream-cache.c
index 2a53bf6..d083d8b 100644
--- a/libtinymail/tny-stream-cache.c
+++ b/libtinymail/tny-stream-cache.c
@@ -158,7 +158,7 @@ tny_stream_cache_register_type (gpointer notused)
 			NULL
 		};
 	type = g_type_register_static (G_TYPE_INTERFACE, 
-				       "TnyCacheStream", &info, 0);
+				       "TnyStreamCache", &info, 0);
 	
 	return GUINT_TO_POINTER (type);
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]