Sort categories with translated names

This commit is contained in:
2012-12-16 09:49:51 +01:00
parent d206d5b051
commit 3e89eb7279
5 changed files with 27 additions and 6 deletions

View File

@@ -147,11 +147,11 @@ QPixmap BackgroundAttributes::pixmap() const
QDebug operator<<(QDebug dbg, const KDChart::BackgroundAttributes& ba)
{
dbg << "KDChart::BackgroundAttributes("
<< "visible="<<ba.isVisible()
<< "brush="<<ba.brush()
<< "pixmapmode="<<ba.pixmapMode()
<< "pixmap="<<ba.pixmap()
<< ")";
<< "visible="<<ba.isVisible()
<< "brush="<<ba.brush()
<< "pixmapmode="<<ba.pixmapMode()
// << "pixmap="<<ba.pixmap()
<< ")";
return dbg;
}
#endif /* QT_NO_DEBUG_STREAM */