diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-05 03:21:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-05 03:21:05 +0800 |
commit | 207efa9abf003c9b35c9e91b45ed1caafc5c5056 (patch) | |
tree | 559e0bce0cee012aad97a6d5fd05280b86524e2f | |
parent | 4a28f62c6cfdfdd6867b899e8a742c719d8a41b4 (diff) | |
download | gsoc2013-evolution-207efa9abf003c9b35c9e91b45ed1caafc5c5056.tar.gz gsoc2013-evolution-207efa9abf003c9b35c9e91b45ed1caafc5c5056.tar.zst gsoc2013-evolution-207efa9abf003c9b35c9e91b45ed1caafc5c5056.zip |
s/class/klass in one place so that the header is c++-safe.
2003-03-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-object.h: s/class/klass in one place so that the header is
c++-safe.
svn path=/trunk/; revision=20140
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-object.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 345a653cb8..d71a3f3cba 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2003-03-04 Jeffrey Stedfast <fejj@ximian.com> + + * camel-object.h: s/class/klass in one place so that the header is + c++-safe. + 2003-03-03 Jeffrey Stedfast <fejj@ximian.com> * camel-tcp-stream-openssl.c (camel_tcp_stream_ssl_new): Updated diff --git a/camel/camel-object.h b/camel/camel-object.h index 30da23c132..5c5b4ca253 100644 --- a/camel/camel-object.h +++ b/camel/camel-object.h @@ -175,7 +175,7 @@ CamelType camel_type_register(CamelType parent, const char * name, /*unsigned in /* object class methods (types == classes now) */ const char *camel_type_to_name (CamelType type); CamelType camel_name_to_type (const char *name); -void camel_object_class_add_event (CamelObjectClass *class, const char *name, CamelObjectEventPrepFunc prep); +void camel_object_class_add_event (CamelObjectClass *klass, const char *name, CamelObjectEventPrepFunc prep); void camel_object_class_dump_tree (CamelType root); |