| 15 | inline void initResources() { Q_INIT_RESOURCE(resources); } |
| 16 | |
| 17 | FlowViewStyle:: |
| 18 | FlowViewStyle() |
| 19 | { |
| 20 | // Explicit resources inialization for preventing the static initialization |
| 21 | // order fiasco: https://isocpp.org/wiki/faq/ctors#static-init-order |
| 22 | initResources(); |
| 23 | |
| 24 | // This configuration is stored inside the compiled unit and is loaded statically |
| 25 | loadJsonFile(":DefaultStyle.json"); |
| 26 | } |
| 27 | |
| 28 | |
| 29 | FlowViewStyle:: |
nothing calls this directly
no test coverage detected