- missed file

svn path=/trunk/playground/graphics/oKular/kpdf/; revision=481786
remotes/origin/okular3-playground
Piotr Szymanski 21 years ago
parent 75db44d843
commit fec81c9e07
  1. 13
      core/generator.cpp

@ -0,0 +1,13 @@
#include "generator.h"
std::ostream& operator<< (std::ostream& str, const PixmapRequest *req)
{
QString s("");
if (req->async)
s += "As";
else
s += "S";
s += QString ("ync PixmapRequest (id: %1) (%2x%3) ").arg(req->id,req->width,req->height);
s += QString("rot:%4, prio: %5, pageNo: %6) ").arg(req->rotation,req->priority,req->pageNumber);
return (str << s);
}
Loading…
Cancel
Save