X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgmemoryinputstream.c;h=d8225885a11c704b45fe4573f5462dd9d5415ceb;hb=356a3987cee7ceddcb3fe623edf0bd2881895add;hp=a4feb99c227fe505bd42e9c70384c890bf92d6b8;hpb=c5ec4831fa8d96de37d04dcd97abb249872b7a44;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gmemoryinputstream.c b/gio/gmemoryinputstream.c index a4feb99..d822588 100644 --- a/gio/gmemoryinputstream.c +++ b/gio/gmemoryinputstream.c @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Author: Christian Kellner */ @@ -102,6 +100,7 @@ static GSource *g_memory_input_stream_create_source (GPollableInputStream static void g_memory_input_stream_finalize (GObject *object); G_DEFINE_TYPE_WITH_CODE (GMemoryInputStream, g_memory_input_stream, G_TYPE_INPUT_STREAM, + G_ADD_PRIVATE (GMemoryInputStream) G_IMPLEMENT_INTERFACE (G_TYPE_SEEKABLE, g_memory_input_stream_seekable_iface_init); G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_INPUT_STREAM, @@ -115,8 +114,6 @@ g_memory_input_stream_class_init (GMemoryInputStreamClass *klass) GObjectClass *object_class; GInputStreamClass *istream_class; - g_type_class_add_private (klass, sizeof (GMemoryInputStreamPrivate)); - object_class = G_OBJECT_CLASS (klass); object_class->finalize = g_memory_input_stream_finalize; @@ -165,9 +162,7 @@ g_memory_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface) static void g_memory_input_stream_init (GMemoryInputStream *stream) { - stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream, - G_TYPE_MEMORY_INPUT_STREAM, - GMemoryInputStreamPrivate); + stream->priv = g_memory_input_stream_get_instance_private (stream); } /**