Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-03-04 Thread Frank Lanitz
Am 19.02.2013 22:22, schrieb Lex Trotman: Additional patch to treebrowser.c make sure every path leading to a g_free has a g_strdup(), oops. Note I am only using the HACKING approved -Wall -Wextra -O2 -Wno-unused-parameter not the full War and Peace novel of options that Colomban uses :)

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-03-04 Thread Lex Trotman
On 4 March 2013 19:41, Frank Lanitz fr...@frank.uvena.de wrote: Am 19.02.2013 22:22, schrieb Lex Trotman: Additional patch to treebrowser.c make sure every path leading to a g_free has a g_strdup(), oops. Note I am only using the HACKING approved -Wall -Wextra -O2 -Wno-unused-parameter not

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-03-04 Thread Colomban Wendling
Le 04/03/2013 14:43, Frank Lanitz a écrit : Am 04.03.2013 10:23, schrieb Lex Trotman: On 4 March 2013 19:41, Frank Lanitz fr...@frank.uvena.de wrote: Am 19.02.2013 22:22, schrieb Lex Trotman: Additional patch to treebrowser.c make sure every path leading to a g_free has a g_strdup(), oops.

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-03-04 Thread Colomban Wendling
Le 04/03/2013 16:33, Colomban Wendling a écrit : Le 04/03/2013 14:43, Frank Lanitz a écrit : Am 04.03.2013 10:23, schrieb Lex Trotman: On 4 March 2013 19:41, Frank Lanitz fr...@frank.uvena.de wrote: Am 19.02.2013 22:22, schrieb Lex Trotman: Additional patch to treebrowser.c make sure every

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-02-19 Thread Frank Lanitz
Am 17.02.2013 04:09, schrieb Lex Trotman: Attached is a patch containing a few obvious fixes for warnings in the plugins, mostly adding consts, gpointer casts and unsigned int loop counters. The only one that is likely to have been bad (tm) is in treebrowser.c it g_freed a static string.

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-02-19 Thread Colomban Wendling
Le 19/02/2013 13:22, Frank Lanitz a écrit : Am 17.02.2013 04:09, schrieb Lex Trotman: Attached is a patch containing a few obvious fixes for warnings in the plugins, mostly adding consts, gpointer casts and unsigned int loop counters. The only one that is likely to have been bad (tm) is in

Re: [Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-02-19 Thread Lex Trotman
Additional patch to treebrowser.c make sure every path leading to a g_free has a g_strdup(), oops. Note I am only using the HACKING approved -Wall -Wextra -O2 -Wno-unused-parameter not the full War and Peace novel of options that Colomban uses :) Cheers Lex On 20 February 2013 00:31, Colomban

[Geany-Devel] Gaeny-plugins: Some minor changes to silence warnings

2013-02-16 Thread Lex Trotman
Attached is a patch containing a few obvious fixes for warnings in the plugins, mostly adding consts, gpointer casts and unsigned int loop counters. The only one that is likely to have been bad (tm) is in treebrowser.c it g_freed a static string. Setting the string const found that.