Changeset 574 for trunk/src/gui/painting/qcups.cpp
- Timestamp:
- Feb 17, 2010, 9:58:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/painting/qcups.cpp
r573 r574 377 377 if (!isAvailable()) 378 378 return false; 379 return _cupsGetPPD(printerName) != 0; 379 const char *ppdFile = _cupsGetPPD(printerName); 380 if (ppdFile != 0) 381 unlink(ppdFile); 382 return ppdFile != 0; 380 383 } 381 384
Note:
See TracChangeset
for help on using the changeset viewer.