On Fri, 21 Jun 2013 18:54:15 +0200, Detlev Offenbach
wrote:
> Hello,
>
> there was a strange observation reported using eric5. The eric5 PySvn
> plug-in has a dialog to ask the user for a password. This is embedded in
> code like this
>
> cursor = QApplication.overrideCursor()
>
Hello,
there was a strange observation reported using eric5. The eric5 PySvn
plug-in has a dialog to ask the user for a password. This is embedded in
code like this
cursor = QApplication.overrideCursor()
if cursor is not None:
QApplication.restoreOverrideCursor()
Hello,
testing eric5 with Qt5 and latest PyQt4 snapshot raised a strange observation.
The eric5 Web Browser shows dialog windows generated by Qt5 with content like
Trying to construct an instance of an invalid type, type id: 627995709
Does anybody have an idea what could causing this?
Detlev
-
On Sonntag, 25. Juli 2010, Phil Thompson wrote:
> On Sun, 25 Jul 2010 19:11:00 +0200, Antonio Valentino
>
> wrote:
> > Hi,
> >
> > Il giorno Sun, 25 Jul 2010 18:26:15 +0200
> >
> > detlev ha scritto:
> >> Hi,
> >>
> >> in the past code like
> >>
> >> @pyqtSlot(QTreeWidgetItem, QTreeWidge
On Sun, 25 Jul 2010 19:11:00 +0200, Antonio Valentino
wrote:
> Hi,
>
> Il giorno Sun, 25 Jul 2010 18:26:15 +0200
> detlev ha scritto:
>
>> Hi,
>>
>> in the past code like
>>
>> @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem)
>> def on_logTree_currentItemChanged(self, current, previous):
>
Hi,
Il giorno Sun, 25 Jul 2010 18:26:15 +0200
detlev ha scritto:
> Hi,
>
> in the past code like
>
> @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem)
> def on_logTree_currentItemChanged(self, current, previous):
>
> used to work. Such a method got called, whenever the current item of
> the
Hi,
in the past code like
@pyqtSlot(QTreeWidgetItem, QTreeWidgetItem)
def on_logTree_currentItemChanged(self, current, previous):
used to work. Such a method got called, whenever the current item of the tree
changed. However, with latest stable releases this is not the case anymore. If