Custom Query (27 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 27)

1 2 3 4 5 6 7 8 9
Ticket Resolution Summary Owner Reporter
#38 duplicate GIF-support dmik rudi
Description

Is there a reason why we don't enable GIF-support by default ?

AFAIK, the licensing issues are not valid anymore because the patents for the LZW algorithm have expired in 2003 or so.

#33 fixed Add the OS/2 system exception handler to the Qt library dmik dmik
Description

We want more information about system exceptions happening in the Qt library and in applications built on top of it: the standard OS/2 popup log mechanism, as well as the kLIBC 0.6 exception handler provide not enough details (for example they don't walk the stack frames). In addition, the latter prints the exception info to stderr only, which makes little sense for release versions of PM applications.

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