MCPcopy Create free account
hub / github.com/OpenMW/openmw / parseBool

Function parseBool

components/config/launchersettings.cpp:58–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56 }
57
58 bool parseBool(const QString& value, bool& out)
59 {
60 if (value == "false")
61 {
62 out = false;
63 return true;
64 }
65 if (value == "true")
66 {
67 out = true;
68 return true;
69 }
70
71 return false;
72 }
73
74 bool parseInt(const QString& value, int& out)
75 {

Callers 6

Technique>Method · 0.85
Render_Target>Method · 0.85
getUniformValueMethod · 0.85
parseUniformMethod · 0.85
parseGeneralSectionFunction · 0.85
parseImporterSectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected