Mercurial > hg > svgui
comparison widgets/IconLoader.cpp @ 810:b68af2be4545 tonioni
Merge from branch warnfix_no_size_t
author | Chris Cannam |
---|---|
date | Wed, 18 Jun 2014 13:42:25 +0100 |
parents | e4773943c9c1 |
children | 4b5efd76a55c |
comparison
equal
deleted
inserted
replaced
802:584b11df8e4f | 810:b68af2be4545 |
---|---|
78 pmap = QPixmap(QString(":icons/%1.png").arg(name)); | 78 pmap = QPixmap(QString(":icons/%1.png").arg(name)); |
79 } | 79 } |
80 } | 80 } |
81 if (pmap.isNull()) return pmap; | 81 if (pmap.isNull()) return pmap; |
82 | 82 |
83 for (int i = 0; i < sizeof(autoInvertExceptions)/ | 83 for (int i = 0; i < int(sizeof(autoInvertExceptions)/ |
84 sizeof(autoInvertExceptions[0]); ++i) { | 84 sizeof(autoInvertExceptions[0])); ++i) { |
85 if (autoInvertExceptions[i] == name) { | 85 if (autoInvertExceptions[i] == name) { |
86 return pmap; | 86 return pmap; |
87 } | 87 } |
88 } | 88 } |
89 | 89 |