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
remotes/origin/KDE/4.13
Luigi Toscano 12 years ago
parent f7ec9df0af
commit 4c4825a2a8
  1. 6
      ui/fileprinterpreview.cpp

@ -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()) {

Loading…
Cancel
Save