| 69 | } |
| 70 | |
| 71 | void |
| 72 | FlowViewStyle:: |
| 73 | loadJsonFile(QString styleFile) |
| 74 | { |
| 75 | QFile file(styleFile); |
| 76 | |
| 77 | if (!file.open(QIODevice::ReadOnly)) |
| 78 | { |
| 79 | qWarning() << "Couldn't open file " << styleFile; |
| 80 | |
| 81 | return; |
| 82 | } |
| 83 | |
| 84 | loadJsonFromByteArray(file.readAll()); |
| 85 | } |
| 86 | |
| 87 | |
| 88 | void |
nothing calls this directly
no outgoing calls
no test coverage detected