| 78 | } |
| 79 | |
| 80 | void SetButtonIcon(QAbstractButton *button, const char *path) |
| 81 | { |
| 82 | QIcon icon; |
| 83 | icon.addFile(QString::fromUtf8(path), QSize(), QIcon::Normal, |
| 84 | QIcon::Off); |
| 85 | button->setIcon(icon); |
| 86 | } |
| 87 | |
| 88 | int FindIdxInRagne(QComboBox *list, int start, int stop, |
| 89 | const std::string &value, Qt::MatchFlags flags) |
no outgoing calls
no test coverage detected