Movie list window: use close icon from icon theme
[cinaest] / src / imdb / gzip-input-stream.vala
index e31dcb4..070461e 100644 (file)
@@ -27,7 +27,7 @@ class GzipInputStream : FilterInputStream {
        public uchar[] buf_in;
 
        public GzipInputStream (GLib.InputStream _base_stream) {
-               base_stream = _base_stream;
+               Object (base_stream: _base_stream);
                strm = InflateStream.full (15 | 32);
        }