]> git.sur5r.net Git - bacula/bacula/commitdiff
This is a 1/2 fix of the issue. It allows for the sorting of the two non graphic...
authorDirk H Bartley <dirk@rustyloon.net>
Fri, 5 Mar 2010 04:26:41 +0000 (23:26 -0500)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:36 +0000 (16:49 +0200)
bacula/src/qt-console/util/fmtwidgetitem.cpp

index 9f7bf412af9b3d7867684f16acec0351ffa34396..5856f058a41aee00998789da734017873dc6df90 100644 (file)
@@ -213,7 +213,8 @@ void ItemFormatterBase::setPercent(int index, float value)
       pix = ":images/96p.png";
    }
    setPixmap(index, QPixmap(pix), val);
-   setSortValue(index, (int) value);
+   //setSortValue(index, (int) value);
+   //setBackground(index, Qt::green);
 }
 
 /* By default, the setPixmap implementation with tooltip don't implement
@@ -227,9 +228,8 @@ void ItemFormatterBase::setPixmap(int index, const QPixmap &pix,
 
 void ItemFormatterBase::setInChanger(int index, const QString &InChanger)
 {
-   setPixmap(index, 
-             QPixmap(":images/inflag"+InChanger+".png"));
-   setSortValue(index, InChanger.toInt() );
+   setPixmap(index, QPixmap(":images/inflag"+InChanger+".png"));
+   //setSortValue(index, InChanger.toInt() );
 }
 
 void ItemFormatterBase::setTextFld(int index, const QString &fld, bool center)