[Interest] Is this bug still there?

2015-07-31 Thread Jérôme Godbout
Hi, I would like to know if this bug is still there: https://bugreports.qt.io/browse/QTBUG-42273 The bug is the scroll wheel event auto propagate itself (this was introduced in 5.3.1) to item below without a way to stop it (now it's the delta that is pass as arg and not the scrollwheelEvent

Re: [Interest] Release Binary Builds

2015-07-31 Thread m...@rpzdesign.com
Somewhere in http://code.qt.io/cgit/qtsdk/qtsdk.git/ On 7/31/2015 9:39 AM, Adrian Jäkel wrote: Hey did you find it? I'm searching for this info too but wasn't successful yet. Regards, A. Jäkel -- No spell checkers were harmed during the creation of this message.

Re: [Interest] SIGBUS Android Qt 5.5.0

2015-07-31 Thread Thiago Macieira
On Thursday 30 July 2015 22:03:22 rpzrpz...@gmail.com wrote: Thiago: You were right. string.h - Correct For SIGBUS exceptions, I had some structure members that did NOT end on even 4 byte boundaries. I had to specifically set some memory variables to pass on 4 byte alignments.

Re: [Interest] Qt 5.5.0 OSX Simulator fail

2015-07-31 Thread Robert Iakobashvili
On Fri, Jul 31, 2015 at 4:27 AM, mark diener rpzrpz...@gmail.com wrote: Hello List IOS Maintainer Tor Arne: (tor.arne.ves...@theqtcompany.com) I would like to suggest some hard lessons learned today. I upgraded to 5.5.0 and was primarily getting my code running on OSX to make sure it

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 interest@qt-project.org Subject: [Interest]

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 working.

[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?

[Interest] QTextEdit - Line Spacing for Text

2015-07-31 Thread Robert Iakobashvili
Hi, After searching and attempting in Qt-5.4, it seems that line spacing for a text could not be easily increased/changed. Am I missing something or there are some tricks to try? Could it be a new feature request, and if yes, how/where to file it properly? Thank you. Regards, Robert

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 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 nunosan...@imaginando.pt 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

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!