Re: [Interest] Debugging not emitted signals

2015-07-31 Thread Nuno Santos
Guys, I found the problem. I was being completely eluded. I was modifying an object that was not being displayed. Also, I was trying to debug objects that were never being modified to trigger the signals. That’s why I couldn’t see the signals being emitted. Conclusion: I need vacations! Than

Re: [Interest] Debugging not emitted signals

2015-07-31 Thread Reinhardt Behm
On Friday 31 July 2015 09:51:15 Nuno Santos wrote: > Hi, > > I’m facing a weird issue. I have signal in a class that is not being > emitted. > > What can be causing this? How should I debug? > > I have tripple checked everything and can’t figure it out, why such a basic > functionality is not wo

Re: [Interest] Debugging not emitted signals

2015-07-31 Thread André Somers
Op 31-7-2015 om 10:51 schreef Nuno Santos: > Hi, > > I’m facing a weird issue. I have signal in a class that is not being emitted. How do you know this? My guess is: all you know is that your slots that you think you connected to this signal are not getting called, but that is not the same thing.

Re: [Interest] Debugging not emitted signals

2015-07-31 Thread Curtis Mitch
> -Original Message- > From: interest-bounces+mitch.curtis=theqtcompany@qt-project.org > [mailto:interest-bounces+mitch.curtis=theqtcompany@qt-project.org] > On Behalf Of Nuno Santos > Sent: Friday, 31 July 2015 10:51 AM > To: interest > Subject: [Interest]

Re: [Interest] Debugging not emitted signals

2015-07-31 Thread Robert Iakobashvili
Hi Nuno, The first thing to check is what returns connect. Take care. Regards, Robert On Fri, Jul 31, 2015 at 11:51 AM, Nuno Santos wrote: > Hi, > > I’m facing a weird issue. I have signal in a class that is not being > emitted. > > What can be causing this? How should I debug? > > I have tri

[Interest] Debugging not emitted signals

2015-07-31 Thread Nuno Santos
Hi, I’m facing a weird issue. I have signal in a class that is not being emitted. What can be causing this? How should I debug? I have tripple checked everything and can’t figure it out, why such a basic functionality is not working. Can someone provide me some debugging tips for this case?