Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 301)

Ticket Resolution Summary Owner Reporter
#253 wontfix Warp4 Style Silvan Scherrer
Description

add Warp4 Style to Qt4. Some bit can be borrowed from the Qt3 port.

#261 wontfix Provide private headers Silvan Scherrer
Description

some platforms provide libqt4-headers-private, and we could use that also. i have at least a need to get access to some private QtCups? functions.

#266 invalid waitForFinished() doesn't work Silvan Scherrer
Description

I think there is a problem with waitForFinished() in 4.7

Scribus fails when trying to check if Ghostscript exists:

The code snippet is: bool testGSAvailability( const QString& gsPath ) { fprintf(stderr,"testGSAvailability( const QString& gsPath )\n");

QStringList args; args.append( "-h" ); QProcess proc;

qDebug() << gsPath; qDebug() << getShortPathName(gsPath);

proc.start(getShortPathName(gsPath), args);

if (!proc.waitForStarted(5000))

return false;

proc.waitForFinished(5000); return (proc.exitCode()==0);

} gsPath is e:/gs/gs8.71/bin/gsos2.exe and args = -h

proc.waitForFinished(5000) never returns. when I add a debug printf before and after it, only the first one prints...

Note: See TracQuery for help on using queries.