Re: How to find replacements for deprecated functions

2016-11-30 Thread Emmanuele Bassi
Hi; for direct replacements, we use compiler warnings that will tell you what to use - or point you in the general direction; e.g. something like "The function X has been deprecated; use Y instead". If you're using a high level language, it depends on the language; AFAIK Python will emit a

Re: How to find replacements for deprecated functions

2016-11-30 Thread Erik de Castro Lopo
Emmanuele Bassi wrote: > There is no direct replacement for GtkUIManager, in the sense that > there is no API that you can use to immediately replace GtkUIManager. > > GtkUIManager has been deprecated for a long time — it was deprecated > in GTK+ 2.x, so it's not really a GTK+ 3.x issue. Ok, so

Re: How to find replacements for deprecated functions

2016-11-30 Thread Emmanuele Bassi
Hi; On 30 November 2016 at 09:07, Erik de Castro Lopo wrote: > HI all, > > I am an occassional GTK user, and often I work on resurrecting code > bases for which I am not the original author. As such I often run > into reprecation warnings. When I go to the documentation I

How to find replacements for deprecated functions

2016-11-30 Thread Erik de Castro Lopo
HI all, I am an occassional GTK user, and often I work on resurrecting code bases for which I am not the original author. As such I often run into reprecation warnings. When I go to the documentation I find things like this: