Custom Query (27 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 27)

1 2 3 4 5 6 7 8 9
Ticket Resolution Summary Owner Reporter
#25 fixed Port Psi to OS/2 dmik dmik
Description

Psi (http://psi-im.org) is one of the best jabber clients I know, and it is based on Qt. It will be really nice to have an OS/2 version of this application.

#27 invalid Psi influencing behaviour of other apps dmik axel.hagedorn@…
Description

Cannot say if this is a defect of the port or problems with other apps that Psi brings up. But since I see things with more than just one app it seems to be more on the Psi side...

When Psi is up and running, the Unread-Icon in of a new mail in PMMail does not automatically switch to read anymore when the mail is viewed in the preview pane. - If you shut down Psi, it works again.

When Psi is up and running, the animated train-symbol that can be seen when moving or copying a file with EFCommander is not displayed. - Again, if you switch off Psi, next copy job shows it again.

When Psi is up and running, you cannot rename files anymore in EFCommander by clicking on the filename twice. - Switch off Psi and it works again.

This is while working with Beta 1 of Psi.

Regards Axel

#32 fixed QDir::rootDirPath() causes an access violation dmik froloff
Description

Finally I found the bug, which cause QT application trap on my notebook, when using file dialog. It is strange that this mistake doesn't cause trap on desktop PC ;)

Here is the fixed version of QDir::rootDirPath() function:

QString QDir::rootDirPath()

{
    ULONG bootDrive[1] = {0};

    DosQuerySysInfo( QSV_BOOT_DRIVE, QSV_BOOT_DRIVE, (PVOID)bootDrive, sizeof(bootDrive) );

    QString d = QChar( (char)(bootDrive[0] + 'A' - 1) );

    d += ":/";

    return d;

}
1 2 3 4 5 6 7 8 9
Note: See TracQuery for help on using queries.