<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/glib.git/gobject/gobject-query.c, branch require-python34</title>
<subtitle>gitlab.gnome.org: GNOME/glib.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/'/>
<entry>
<title>gobject/: LGPLv2+ -&gt; LGPLv2.1+</title>
<updated>2017-05-24T09:58:19+00:00</updated>
<author>
<name>Sébastien Wilmet</name>
<email>swilmet@gnome.org</email>
</author>
<published>2017-01-05T13:09:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=6b948d9613f2dcdec72828f3429ba01403063ff2'/>
<id>6b948d9613f2dcdec72828f3429ba01403063ff2</id>
<content type='text'>
All gobject/*.{c,h} files have been processed.

gmarshal.c and gmarshal.h don't have a license header.

https://bugzilla.gnome.org/show_bug.cgi?id=776504
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All gobject/*.{c,h} files have been processed.

gmarshal.c and gmarshal.h don't have a license header.

https://bugzilla.gnome.org/show_bug.cgi?id=776504
</pre>
</div>
</content>
</entry>
<entry>
<title>gobject: Mark a helper variable as const</title>
<updated>2015-03-04T08:55:30+00:00</updated>
<author>
<name>Philip Withnall</name>
<email>philip.withnall@collabora.co.uk</email>
</author>
<published>2015-03-04T08:52:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=6d030ea0aef634cfdd6b82c9f213c1061b68709a'/>
<id>6d030ea0aef634cfdd6b82c9f213c1061b68709a</id>
<content type='text'>
It’s only used for argv values, which are not modified here.

https://bugzilla.gnome.org/show_bug.cgi?id=614684
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It’s only used for argv values, which are not modified here.

https://bugzilla.gnome.org/show_bug.cgi?id=614684
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated FSF's address</title>
<updated>2014-01-31T13:31:55+00:00</updated>
<author>
<name>Daniel Mustieles</name>
<email>daniel.mustieles@gmail.com</email>
</author>
<published>2014-01-23T11:58:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=078dbda148a81af1b3a76fbda72f089b963087f1'/>
<id>078dbda148a81af1b3a76fbda72f089b963087f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX</title>
<updated>2013-11-20T14:25:39+00:00</updated>
<author>
<name>Dan Winship</name>
<email>danw@gnome.org</email>
</author>
<published>2013-10-19T17:04:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=158dde050702f83a058962d14156a02234fc9685'/>
<id>158dde050702f83a058962d14156a02234fc9685</id>
<content type='text'>
In Windows development environments that have it, &lt;unistd.h&gt; is mostly
just a wrapper around several other native headers (in particular,
&lt;io.h&gt;, which contains read(), close(), etc, and &lt;process.h&gt;, which
contains getpid()). But given that some Windows dev environments don't
have &lt;unistd.h&gt;, everything that uses those functions on Windows
already needed to include the correct Windows header as well, and so
there is never any point to including &lt;unistd.h&gt; on Windows.

Also, remove some &lt;unistd.h&gt; includes (and a few others) that were
unnecessary even on unix.

https://bugzilla.gnome.org/show_bug.cgi?id=710519
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Windows development environments that have it, &lt;unistd.h&gt; is mostly
just a wrapper around several other native headers (in particular,
&lt;io.h&gt;, which contains read(), close(), etc, and &lt;process.h&gt;, which
contains getpid()). But given that some Windows dev environments don't
have &lt;unistd.h&gt;, everything that uses those functions on Windows
already needed to include the correct Windows header as well, and so
there is never any point to including &lt;unistd.h&gt; on Windows.

Also, remove some &lt;unistd.h&gt; includes (and a few others) that were
unnecessary even on unix.

https://bugzilla.gnome.org/show_bug.cgi?id=710519
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove g_type_init() calls</title>
<updated>2012-10-16T13:39:24+00:00</updated>
<author>
<name>Ryan Lortie</name>
<email>desrt@desrt.ca</email>
</author>
<published>2012-10-15T16:00:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=1dc774a653e992e1153fbed16f90097fa8db467f'/>
<id>1dc774a653e992e1153fbed16f90097fa8db467f</id>
<content type='text'>
Very many testcases, some GLib tools (resource compiler, etc) and
GApplication were calling g_type_init().

Remove those uses, as they are no longer required.

https://bugzilla.gnome.org/show_bug.cgi?id=686161
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Very many testcases, some GLib tools (resource compiler, etc) and
GApplication were calling g_type_init().

Remove those uses, as they are no longer required.

https://bugzilla.gnome.org/show_bug.cgi?id=686161
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the right binary name in help output. Patch by Hiroyuki Ikezoe.</title>
<updated>2008-07-06T02:01:56+00:00</updated>
<author>
<name>Matthias Clasen</name>
<email>matthiasc@src.gnome.org</email>
</author>
<published>2008-07-06T02:01:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=6b4da7c5e13bd5c3aaad96224122d1a0ca2cdcf3'/>
<id>6b4da7c5e13bd5c3aaad96224122d1a0ca2cdcf3</id>
<content type='text'>
        * gobject-query.c: Use the right binary name in help output.
        Patch by Hiroyuki Ikezoe.


svn path=/trunk/; revision=7164
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
        * gobject-query.c: Use the right binary name in help output.
        Patch by Hiroyuki Ikezoe.


svn path=/trunk/; revision=7164
</pre>
</div>
</content>
</entry>
<entry>
<title>moved includes back to the top of the files (before gtk-doc SECTION</title>
<updated>2008-06-22T14:29:25+00:00</updated>
<author>
<name>Michael Natterer</name>
<email>mitch@imendio.com</email>
</author>
<published>2008-06-22T14:29:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=5602b7e275ef5fb76cf7847f35b120dce3111705'/>
<id>5602b7e275ef5fb76cf7847f35b120dce3111705</id>
<content type='text'>
2008-06-22  Michael Natterer  &lt;mitch@imendio.com&gt;

	* *.c: moved includes back to the top of the files (before gtk-doc
	SECTION comments). Add "config.h" in all files and move system
	included before glib includes. Remove trailing whitespace from
	SECTION comments and did some reformatting where lines were overly
	long, no documentation content was changed.


svn path=/trunk/; revision=7089
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2008-06-22  Michael Natterer  &lt;mitch@imendio.com&gt;

	* *.c: moved includes back to the top of the files (before gtk-doc
	SECTION comments). Add "config.h" in all files and move system
	included before glib includes. Remove trailing whitespace from
	SECTION comments and did some reformatting where lines were overly
	long, no documentation content was changed.


svn path=/trunk/; revision=7089
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence compiler warnings.</title>
<updated>2005-11-28T20:33:53+00:00</updated>
<author>
<name>Matthias Clasen</name>
<email>mclasen@redhat.com</email>
</author>
<published>2005-11-28T20:33:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=d98433b85e26a43506d0f149a8a994717ca9ce05'/>
<id>d98433b85e26a43506d0f149a8a994717ca9ce05</id>
<content type='text'>
2005-11-28  Matthias Clasen  &lt;mclasen@redhat.com&gt;

	* gobjectnotifyqueue.c (g_object_notify_queue_thaw):
	* gobject-query.c (main): Silence compiler warnings.

	* glib-genmarshal.c (main): Use G_N_ELEMENTS.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2005-11-28  Matthias Clasen  &lt;mclasen@redhat.com&gt;

	* gobjectnotifyqueue.c (g_object_notify_queue_thaw):
	* gobject-query.c (main): Silence compiler warnings.

	* glib-genmarshal.c (main): Use G_N_ELEMENTS.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cosmetic fixes (#163792, Benoît Carpentier):</title>
<updated>2005-01-12T17:27:18+00:00</updated>
<author>
<name>Matthias Clasen</name>
<email>mclasen@redhat.com</email>
</author>
<published>2005-01-12T17:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=9bd80d9cb497d8623ca6d612707f1bb9b7c52e35'/>
<id>9bd80d9cb497d8623ca6d612707f1bb9b7c52e35</id>
<content type='text'>
2005-01-12  Matthias Clasen  &lt;mclasen@redhat.com&gt;

	Cosmetic fixes (#163792, Benoît Carpentier):

	* gobject-query.c (main): Remove duplicate lines.

	* gvaluetransform.c: Remove duplicate definitions of
	value_transform_[u]int64_[u]int64.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2005-01-12  Matthias Clasen  &lt;mclasen@redhat.com&gt;

	Cosmetic fixes (#163792, Benoît Carpentier):

	* gobject-query.c (main): Remove duplicate lines.

	* gvaluetransform.c: Remove duplicate definitions of
	value_transform_[u]int64_[u]int64.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix iterating over fundamental types.</title>
<updated>2003-09-02T12:58:23+00:00</updated>
<author>
<name>Tim Janik</name>
<email>timj@gtk.org</email>
</author>
<published>2003-09-02T12:58:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=de059b53bc12918e927c2234a3ebe0910f6f7ed1'/>
<id>de059b53bc12918e927c2234a3ebe0910f6f7ed1</id>
<content type='text'>
Tue Sep  2 14:53:41 2003  Tim Janik  &lt;timj@gtk.org&gt;

        * gobject-query.c (main): fix iterating over fundamental types.

        * gtype.c: applied patch from owen which keeps internal
        class initialization state to maintain class and interface
        initialization happen in the order of:
        1. class' base_init
        2. interface' base_init
        =  interfaces added after here are immediately base_init-ialized
        3. class_init
        4. Interface_init
        =  interfaces added here are immediately Interface_init-ialized
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tue Sep  2 14:53:41 2003  Tim Janik  &lt;timj@gtk.org&gt;

        * gobject-query.c (main): fix iterating over fundamental types.

        * gtype.c: applied patch from owen which keeps internal
        class initialization state to maintain class and interface
        initialization happen in the order of:
        1. class' base_init
        2. interface' base_init
        =  interfaces added after here are immediately base_init-ialized
        3. class_init
        4. Interface_init
        =  interfaces added here are immediately Interface_init-ialized
</pre>
</div>
</content>
</entry>
</feed>
