| Summary: | debugging is forced on and should use kdebug instead | ||
|---|---|---|---|
| Product: | [Unmaintained] kpdf | Reporter: | Chris Cheney <ccheney> |
| Component: | general | Assignee: | Christophe Devriese <oelewapperke> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Chris Cheney
2004-04-13 23:40:47 UTC
By the way the reason I found out about this problem is a Debian user filed a bug complaining about kpdf being so slow it was unusable. It had spit out over 4MB into the .xsession-errrors for a 4MB pdf file that they were trying to view. http://bugs.debian.org/243187 Please do not change priorities unless you're the maintainer CVS commit by aacid: Don't do forced debugging. Fixes half of 79598. CCMAIL:79598@bugs.kde.org CCMAIL:oelewapperke@wina.be M +2 -2 QOutputDev.cpp 1.15 M +2 -2 QOutputDevPixmap.cpp 1.16 --- kdegraphics/kpdf/kpdf/QOutputDev.cpp #1.14:1.15 @@ -60,6 +60,6 @@ #include "QOutputDev.moc" -#define QPDFDBG(x) x // special debug mode -//#define QPDFDBG(x) // normal compilation +//#define QPDFDBG(x) x // special debug mode +#define QPDFDBG(x) // normal compilation //------------------------------------------------------------------------ --- kdegraphics/kpdf/kpdf/QOutputDevPixmap.cpp #1.15:1.16 @@ -49,6 +49,6 @@ #include "QOutputDevPixmap.moc" -#define QPDFDBG(x) x // special debug mode -//#define QPDFDBG(x) // normal compilation +//#define QPDFDBG(x) x // special debug mode +#define QPDFDBG(x) // normal compilation //------------------------------------------------------------------------ QPDFDBG is gone |