don't print the debug stuff between " and "

svn path=/trunk/KDE/kdegraphics/okular/; revision=732875
This commit is contained in:
Pino Toscano 2007-11-04 23:33:05 +00:00
parent ca0f9184d2
commit 6e37c43c8d

View file

@ -534,7 +534,7 @@ QDebug operator<<( QDebug str, const Okular::PixmapRequest &req )
.arg( req.height() )
.arg( req.priority() )
.arg( req.pageNumber() );
str << s;
str << qPrintable( s );
return str;
}