equal
deleted
inserted
replaced
341 bool QCUPSSupport::printerHasPPD(const char *printerName) |
341 bool QCUPSSupport::printerHasPPD(const char *printerName) |
342 { |
342 { |
343 if (!isAvailable()) |
343 if (!isAvailable()) |
344 return false; |
344 return false; |
345 const char *ppdFile = _cupsGetPPD(printerName); |
345 const char *ppdFile = _cupsGetPPD(printerName); |
346 unlink(ppdFile); |
346 if (ppdFile) |
|
347 unlink(ppdFile); |
347 return (ppdFile != 0); |
348 return (ppdFile != 0); |
348 } |
349 } |
349 |
350 |
350 QString QCUPSSupport::unicodeString(const char *s) |
351 QString QCUPSSupport::unicodeString(const char *s) |
351 { |
352 { |