MCPcopy Create free account
hub / github.com/baldurk/renderdoc / hideOption

Function hideOption

qrenderdoc/Code/qrenderdoc.cpp:174–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172}
173
174void hideOption(QCommandLineOption &opt)
175{
176#if QT_VERSION >= QT_VERSION_CHECK(5, 8, 0)
177 opt.setFlags(QCommandLineOption::HiddenFromHelp);
178#else
179 opt.setHidden(true);
180#endif
181}
182
183int main(int argc, char *argv[])
184{

Callers 1

mainFunction · 0.85

Calls 2

setFlagsMethod · 0.80
setHiddenMethod · 0.45

Tested by

no test coverage detected