X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-stream-text-to-html.c;h=50e11350f0a719fc2fc2e8fad7f3b7a74d8594c7;hb=2a6e3e308c8d806d105f995de43a9cbd2bfdd644;hp=4eee0f08ae6166ffe81f34486fb90c1ae6150f08;hpb=e61d161744d31c7799d1a7b5246b53a7a03d9ea5;p=modest diff --git a/src/modest-stream-text-to-html.c b/src/modest-stream-text-to-html.c index 4eee0f0..50e1135 100644 --- a/src/modest-stream-text-to-html.c +++ b/src/modest-stream-text-to-html.c @@ -323,11 +323,11 @@ modest_stream_text_to_html_iface_init (gpointer g_iface, gpointer iface_data) klass = (TnyStreamIface*) g_iface; - klass->read_func = text_to_html_read; - klass->write_func = text_to_html_write; - klass->flush_func = text_to_html_flush; - klass->close_func = text_to_html_close; - klass->is_eos_func = text_to_html_is_eos; - klass->reset_func = text_to_html_reset; - klass->write_to_stream_func = text_to_html_write_to_stream; + klass->read = text_to_html_read; + klass->write = text_to_html_write; + klass->flush = text_to_html_flush; + klass->close = text_to_html_close; + klass->is_eos = text_to_html_is_eos; + klass->reset = text_to_html_reset; + klass->write_to_stream = text_to_html_write_to_stream; }