bug with Gtk::ScrolledWindow

2012-10-04 Thread Jonas Platte
Hello, I recently found a bug in gtkmm. I filed a bug report on launchpad (I've got no bugzilla account and didn't really search much at first): https://bugs.launchpad.net/ubuntu/+source/gtkmm3.0/+bug/1055744 Now I want to try to debug it, but I have absolutely no experience in debugging that

sigc::mem_fun and Glib::RefPtr

2012-10-04 Thread Horváth Imre
Hi! IS there a solution to use Glib::RefPtr with sigc::mem_fun? Example: Glib::RefPtrMyClass c; ... button.signal_clicked().connect(sigc::mem_fun(c, MyClass::on_button)); Thanks in advance: Imre Horvath ___ gtkmm-list mailing list

Re: sigc::mem_fun and Glib::RefPtr

2012-10-04 Thread klaus triendl
Am Thu, 04 Oct 2012 18:31:17 +0200 schrieb Horváth Imre blemi...@gmail.com: Hi! IS there a solution to use Glib::RefPtr with sigc::mem_fun? Example: Glib::RefPtrMyClass c; ... button.signal_clicked().connect(sigc::mem_fun(c, MyClass::on_button)); yes, there is, by using sigc lambdas.

Re: sigc::mem_fun and Glib::RefPtr

2012-10-04 Thread klaus triendl
Am Thu, 4 Oct 2012 22:07:16 +0200 schrieb klaus triendl kl...@triendl.eu: namespace sigc { // the partially specialized struct dereference_trait is essential, // otherwise sigc can't deduce the return type from expression *sigc::_1 template class T struct

Re: bug with Gtk::ScrolledWindow

2012-10-04 Thread Ian Martin
On 05/10/12 03:04, Jonas Platte wrote: Hello, I recently found a bug in gtkmm. I filed a bug report on launchpad (I've got no bugzilla account and didn't really search much at first): https://bugs.launchpad.net/ubuntu/+source/gtkmm3.0/+bug/1055744 Now I want to try to debug it, but I have