diff -r 93b982ccede2 -r 5daf16870df6 demos/interview/model.cpp --- a/demos/interview/model.cpp Mon Jun 21 22:38:13 2010 +0100 +++ b/demos/interview/model.cpp Thu Jul 22 16:41:55 2010 +0100 @@ -45,6 +45,7 @@ Model::Model(int rows, int columns, QObject *parent) : QAbstractItemModel(parent), + services(QPixmap(":/images/services.png")), rc(rows), cc(columns), tree(new QVector(rows, Node(0))) { @@ -105,7 +106,6 @@ QVariant Model::headerData(int section, Qt::Orientation orientation, int role) const { - static QIcon services(QPixmap(":/images/services.png")); if (role == Qt::DisplayRole) return QString::number(section); if (role == Qt::DecorationRole)