| 531 | } |
| 532 | |
| 533 | void SetOutputFont(QString fontString) |
| 534 | { |
| 535 | QFont font = ui.textOutput->font(); |
| 536 | font.fromString(fontString); |
| 537 | font.setStyleStrategy(QFont::NoFontMerging); |
| 538 | ui.textOutput->setFont(font); |
| 539 | Settings().setValue(FONT, font.toString()); |
| 540 | } |
| 541 | |
| 542 | void ProcessConnected(DWORD processId) |
| 543 | { |
no test coverage detected