<feed xmlns='http://www.w3.org/2005/Atom'>
<title>caja/libegg, branch 1.24</title>
<subtitle>Caja, the file manager for the MATE desktop</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/'/>
<entry>
<title>use MATE_COMPILE_WARNINGS from mate-common</title>
<updated>2020-04-04T12:02:06+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2020-04-03T22:09:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=35d152c30a7133b581300e298ea13090313ea565'/>
<id>35d152c30a7133b581300e298ea13090313ea565</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add git.mk to generate .gitignore</title>
<updated>2019-07-24T13:42:52+00:00</updated>
<author>
<name>Wu Xiaotian</name>
<email>yetist@gmail.com</email>
</author>
<published>2019-07-17T08:54:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=566282a0cb4099388a19a94df2c1a76f3a939bc0'/>
<id>566282a0cb4099388a19a94df2c1a76f3a939bc0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>libegg: reduce the scope of some variables</title>
<updated>2019-05-09T05:16:43+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-05-07T16:33:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=2768c0c160f2af5d04edf99da92b83fc087251fe'/>
<id>2768c0c160f2af5d04edf99da92b83fc087251fe</id>
<content type='text'>
Fixes 'cppcheck' warnings:

[libegg/eggdesktopfile.c:483]: (style) The scope of the variable 'try_exec' can be reduced.
[libegg/eggdesktopfile.c:483]: (style) The scope of the variable 'found_program' can be reduced.
[libegg/eggdesktopfile.c:484]: (style) The scope of the variable 'only_show_in' can be reduced.
[libegg/eggdesktopfile.c:484]: (style) The scope of the variable 'not_show_in' can be reduced.
[libegg/eggdesktopfile.c:486]: (style) The scope of the variable 'i' can be reduced.
[libegg/eggdesktopfile.c:608]: (style) The scope of the variable 'p' can be reduced.

[libegg/eggsmclient-xsmp.c:227]: (style) The scope of the variable 'cmdline' can be reduced.
[libegg/eggsmclient-xsmp.c:773]: (style) The scope of the variable 'fd' can be reduced.
[libegg/eggsmclient-xsmp.c:808]: (style) The scope of the variable 'keys' can be reduced.

[libegg/eggtreemultidnd.c:305]: (style) The scope of the variable 'context' can be reduced.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes 'cppcheck' warnings:

[libegg/eggdesktopfile.c:483]: (style) The scope of the variable 'try_exec' can be reduced.
[libegg/eggdesktopfile.c:483]: (style) The scope of the variable 'found_program' can be reduced.
[libegg/eggdesktopfile.c:484]: (style) The scope of the variable 'only_show_in' can be reduced.
[libegg/eggdesktopfile.c:484]: (style) The scope of the variable 'not_show_in' can be reduced.
[libegg/eggdesktopfile.c:486]: (style) The scope of the variable 'i' can be reduced.
[libegg/eggdesktopfile.c:608]: (style) The scope of the variable 'p' can be reduced.

[libegg/eggsmclient-xsmp.c:227]: (style) The scope of the variable 'cmdline' can be reduced.
[libegg/eggsmclient-xsmp.c:773]: (style) The scope of the variable 'fd' can be reduced.
[libegg/eggsmclient-xsmp.c:808]: (style) The scope of the variable 'keys' can be reduced.

[libegg/eggtreemultidnd.c:305]: (style) The scope of the variable 'context' can be reduced.
</pre>
</div>
</content>
</entry>
<entry>
<title>eggsmclient-xsmp: Fix cast from non-struct type to struct type</title>
<updated>2019-04-14T01:00:04+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-03-15T04:10:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=17853bced259fb720d738f59efc0af4ee5578a26'/>
<id>17853bced259fb720d738f59efc0af4ee5578a26</id>
<content type='text'>
Fixes Clang static analyzer warning:

eggsmclient-xsmp.c:1156:18: warning: Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption
    prop-&gt;vals = (SmPropValue *)vals-&gt;data;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~

eggsmclient-xsmp.c:1189:18: warning: Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption
    prop-&gt;vals = (SmPropValue *)vals-&gt;data;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes Clang static analyzer warning:

eggsmclient-xsmp.c:1156:18: warning: Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption
    prop-&gt;vals = (SmPropValue *)vals-&gt;data;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~

eggsmclient-xsmp.c:1189:18: warning: Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption
    prop-&gt;vals = (SmPropValue *)vals-&gt;data;
                 ^~~~~~~~~~~~~~~~~~~~~~~~~
</pre>
</div>
</content>
</entry>
<entry>
<title>[eel][libegg] Use G_DEFINE_TYPE_WITH_PRIVATE macro</title>
<updated>2019-01-22T04:36:49+00:00</updated>
<author>
<name>Wu Xiaotian</name>
<email>yetist@gmail.com</email>
</author>
<published>2019-01-21T04:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=10efec8be67f2254ecaf197801e67e59d6d2a467'/>
<id>10efec8be67f2254ecaf197801e67e59d6d2a467</id>
<content type='text'>
Replace G_DEFINE_TYPE_WITH_CODE with G_DEFINE_TYPE_WITH_PRIVATE macro
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace G_DEFINE_TYPE_WITH_CODE with G_DEFINE_TYPE_WITH_PRIVATE macro
</pre>
</div>
</content>
</entry>
<entry>
<title>[libegg] Avoid deprecated g_type_class_add_private</title>
<updated>2019-01-12T01:43:18+00:00</updated>
<author>
<name>Wu Xiaotian</name>
<email>yetist@gmail.com</email>
</author>
<published>2019-01-09T14:07:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=9fc6f1f3314f2511249af0a7ce04a255a57c0066'/>
<id>9fc6f1f3314f2511249af0a7ce04a255a57c0066</id>
<content type='text'>
With minimal changes to avoid deprecated g_type_class_add_private
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With minimal changes to avoid deprecated g_type_class_add_private
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix case-insensitive comparison in running_in_mate</title>
<updated>2018-11-07T16:04:28+00:00</updated>
<author>
<name>Zhang Xianwei</name>
<email>zhang.xianwei8@zte.com.cn</email>
</author>
<published>2018-10-29T12:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=2676eaf3ed92ef33e2a39aece779465c427a59db'/>
<id>2676eaf3ed92ef33e2a39aece779465c427a59db</id>
<content type='text'>
The environment variable XDG_SESSION_DESKTOP and DESKTOP_SESSION in
running_in_mate are compared using "MATE". Actually the environment
variable in MATE DE is "mate"(lower case). Using "mate" instead of
"MATE" to fix it.

Signed-off-by: Zhang Xianwei &lt;zhang.xianwei8@zte.com.cn&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The environment variable XDG_SESSION_DESKTOP and DESKTOP_SESSION in
running_in_mate are compared using "MATE". Actually the environment
variable in MATE DE is "mate"(lower case). Using "mate" instead of
"MATE" to fix it.

Signed-off-by: Zhang Xianwei &lt;zhang.xianwei8@zte.com.cn&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>move libegg to the top srcdir and drop some leftovers</title>
<updated>2018-01-14T14:36:26+00:00</updated>
<author>
<name>monsta</name>
<email>monsta@inbox.ru</email>
</author>
<published>2018-01-12T17:04:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/caja/commit/?id=6c162ba243f9e62651a13ce2cb4ca2ec9d422509'/>
<id>6c162ba243f9e62651a13ce2cb4ca2ec9d422509</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
