[PyQt] Windows-problem with QLocalServer/QLocalSocket

2013-01-19 Thread T.N.T.
Hello This is probably rather a windows-problem so I hope it is not too off-topic. I'm experimenting with a little PyQt-app where one instance connects and writes as client to another instance. That works fine in Linux, Mac Os, and one Windows XP that I have tested. But on another box where a

Re: [PyQt] Windows-problem with QLocalServer/QLocalSocket

2013-01-22 Thread T.N.T.
Date: Sat, 19 Jan 2013 15:21:10 +0100 From: "T.N.T." To: pyqt@riverbankcomputing.com Subject: [PyQt] Windows-problem with QLocalServer/QLocalSocket Hello This is probably rather a windows-problem so I hope it is not too off-topic. I'm experimenting with a little PyQt-app whe

[PyQt] qmake error when building PyQt4 with Qt5

2013-04-24 Thread T.N.T.
Hello I tried to build PyQt 4.10.1 with Qt 5.0.2 and Python 3.3 by passing the --qmake parameter as I understood the answer from Phil Thompson to another question yesterday: $ python3 configure-ng.py --confirm-license -q /usr/local/Qt-5.0.2/bin/qmake Querying qmake about your Qt installatio

Re: [PyQt] qmake error when building PyQt4 with Qt5

2013-04-24 Thread T.N.T.
Am 24.04.2013 16:15, schrieb Phil Thompson: On Wed, 24 Apr 2013 15:14:40 +0200, "T.N.T." wrote: Am I missing something? This will probably happen if your Qt doesn't include QtHelp. Try the current PyQt snapshot. Thank you. In the meantime I tried something really

[PyQt] Qt4/Qt5 incompatible results of QTableWidget.selectedItems()?

2013-07-02 Thread T.N.T.
Hello When I have a QTableWidget with the following settings: tw.setColumnCount(2) tw.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) and say I have selected the first two rows, then tw.selectedItems() returns a list of 4 items. Now in PyQt4 compiled with Qt4 the order is: [

Re: [PyQt] Qt4/Qt5 incompatible results of QTableWidget.selectedItems()?

2013-07-02 Thread T.N.T.
On 02.07.2013 20:38, Andreas Pakulat wrote: Hi, Qt makes no guarantee on the order of returned items, it merely guarantee's that all items that are selected are returned in a list. There's no incompatibility, just a change in a behaviour that is not explicitly defined. Thank you. So it was ju