Print preview: explicitly look for the Okular/Ghostview part

No other parts which renders PostScript are available at the moment,
and parts which handles them are return "unexpected" resultS (e.g.
katepart: PostScript source code).

Reviewed by: Albert Astal Cid

BUG: 284428
FIXED-IN: 4.13.2
This commit is contained in:
Luigi Toscano 2014-05-11 16:31:07 +02:00
parent f7ec9df0af
commit 4c4825a2a8

View file

@ -69,8 +69,12 @@ void FilePrinterPreviewPrivate::getPart()
kDebug(500) << "querying trader for application/ps service";
KPluginFactory *factory(0);
/* Explicitly look for the Okular/Ghostview part: no other PostScript
parts are available now; other parts which handles text are not
suitable here (PostScript source code) */
KService::List offers =
KMimeTypeTrader::self()->query("application/postscript", "KParts/ReadOnlyPart");
KMimeTypeTrader::self()->query("application/postscript", "KParts/ReadOnlyPart",
"[DesktopEntryName] == 'okularghostview'");
KService::List::ConstIterator it = offers.constBegin();
while (!factory && it != offers.constEnd()) {