Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-11-01 Thread Colomban Wendling
On 31/10/2015 14:40, Abel wrote: > I have a fix for #631 but I was trying to fix this statusbar > inconsistency thing as well, but I think I will open a new issue for > that and work on them separately. > > On 31 October 2015 at 13:16, Thomas Martitz

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-11-01 Thread Lex Trotman
On 2 November 2015 at 03:50, Colomban Wendling wrote: > On 31/10/2015 14:40, Abel wrote: >> I have a fix for #631 but I was trying to fix this statusbar >> inconsistency thing as well, but I think I will open a new issue for >> that and work on them separately. >> >>

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-11-01 Thread Thomas Martitz
Am 01.11.2015 um 18:50 schrieb Colomban Wendling: Also, IMO a replacement/large improvement should include the following in the end: 1. Seamless integration (all features in all splits) 2. (keep) support for multiple views of the same document 3. multiple (arbitrary) splits Point 1 is obvly

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-10-31 Thread Lex Trotman
On 31 October 2015 at 20:39, Abel wrote: > I understand. I'm trying to solve the inconsistency of being editing a > document on split window but having the status bar showing something else > (Should I open a issue to report this bug?). So, yes, you can take this as a >

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-10-31 Thread Lex Trotman
Nothing is usually added to the API "just because" since it has to be maintained and supported and remain stable, and if the particular function is too deep in the implementation that may constrain later changes to Geany. Things are mostly added these days if a plugin has a need. I guess we can

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-10-31 Thread Lex Trotman
On 31 October 2015 at 21:07, Abel wrote: > I didn't get it clear: If I add these doxygen comments, then there won't be > any "implicit function declaration" warning and I'll get it compiled > correctly? Oh I see, its getting late here :). You also need to export the

Re: [Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-10-31 Thread Thomas Martitz
Am 31. Oktober 2015 11:39:21 MEZ, schrieb Abel : I understand. I'm trying to solve the inconsistency of being editing a document on split window but having the status bar showing something else (Should I open a issue to report this bug?). So, yes, you can take this as a

[Geany-Devel] Problems calling ui_update_statusbar from a plugin

2015-10-30 Thread Abel
Hi! I'm hacking split window plugin and I wanted to use the function ui_update_statusbar(), located in ui_utils.h When I try to compile I get the following warning: "warning: implicit declaration of function 'ui_update_statusbar' [-Wimplicit-function-declaration]" And if I try yo execute the