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