Re: Updated 'docs' page on Sourceforge

2016-11-25 Thread Brian Manning
On Thu, Nov 24, 2016 at 10:54 PM, Thierry Vignaud wrote: > The title is wrong on > https://wiki.gnome.org/Projects/GTK-Perl/Introspection > > "Introspection for GTK2-Perl" I think when Torsten first wrote that wiki page, he meant "GTK2-Perl The Project", and not

Re: GtkTreeView does not show data after clear()

2016-11-25 Thread Daniel Kasak
You might want to check out one of my projects - Gtk3::Ex::DBI. Example constructor: $self->{param} = Gtk3::Ex::DBI::Datasheet->new( { dbh => $self->{globals}->{connections}->{CONTROL} , sql => { select

Re: GtkTreeView does not show data after clear()

2016-11-25 Thread Torsten Schoenfeld
On 22.11.2016 02:35, David Lowrence wrote: > Of course AFAIK, there is no documentation as of yet for Gtk3-Perl, and > I could be using some incorrect code, but I truly feel that there's a > bug in the Gtk3 code that is doing this. Well, as always, the C docs are relevant. Plus, there is

Re: "Not a CODE reference" error with Gtk::Bus::add_watch

2016-11-25 Thread Torsten Schoenfeld
On 21.11.2016 23:09, Wouter Verhelst wrote: > I didn't know about "perli11ndoc", thanks! If you haven't seen it yet, run "perli11ndoc" without arguments to start the GUI. ___ gtk-perl-list mailing list gtk-perl-list@gnome.org

GtkTreeView does not show data after clear()

2016-11-25 Thread David Lowrence
I'm writing a program in gtk3-perl and am experiencing a problem with a TreeView that does not display a second load of data after a clear(). FWIW, I'm doing a customer search, and this sub is run if there are multiple results from a search on a name. I am including the code below where this