mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 21:22:00 +02:00
Review fix, change pointer to reference
This commit is contained in:
parent
69f1ddcec0
commit
0de10029f3
3 changed files with 17 additions and 4 deletions
|
@ -38,7 +38,7 @@ OvenCLIApplication::OvenCLIApplication(int argc, char* argv[]) :
|
|||
Q_ARG(QString, _outputUrlParameter.toString()), Q_ARG(QString, _typeParameter));
|
||||
}
|
||||
|
||||
OvenCLIApplication::parseResult OvenCLIApplication::parseCommandLine(int argc, char* argv[], bool *enableCrashHandler) {
|
||||
OvenCLIApplication::parseResult OvenCLIApplication::parseCommandLine(int argc, char* argv[], bool &enableCrashHandler) {
|
||||
// parse the command line parameters
|
||||
QCommandLineParser parser;
|
||||
|
||||
|
@ -71,7 +71,7 @@ OvenCLIApplication::parseResult OvenCLIApplication::parseCommandLine(int argc, c
|
|||
}
|
||||
|
||||
if (parser.isSet(forceCrashReportingOption)) {
|
||||
*enableCrashHandler = true;
|
||||
enableCrashHandler = true;
|
||||
}
|
||||
|
||||
if (parser.isSet(versionOption)) {
|
||||
|
|
|
@ -26,7 +26,20 @@ public:
|
|||
CLIMode
|
||||
};
|
||||
|
||||
static parseResult parseCommandLine(int argc, char* argv[], bool *enableCrashHandler);
|
||||
/**
|
||||
* @brief Parses the command line arguments
|
||||
*
|
||||
* Oven can operate both in GUI and CLI mode. Depending on which arguments are passed,
|
||||
* we pick the mode to use, and this function returns it.
|
||||
*
|
||||
* Both modes can have the crash handler enabled.
|
||||
*
|
||||
* @param argc argc
|
||||
* @param argv argv
|
||||
* @param enableCrashHandler Output parameter -- whether the crash handler should be enabled.
|
||||
* @return parseResult Which application we should run
|
||||
*/
|
||||
static parseResult parseCommandLine(int argc, char* argv[], bool &enableCrashHandler);
|
||||
|
||||
static OvenCLIApplication* instance() { return dynamic_cast<OvenCLIApplication*>(QCoreApplication::instance()); }
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ int main (int argc, char** argv) {
|
|||
|
||||
// figure out if we're launching our GUI application or just the simple command line interface
|
||||
bool enableCrashHandler = false;
|
||||
OvenCLIApplication::parseResult res = OvenCLIApplication::parseCommandLine(argc, argv, &enableCrashHandler);
|
||||
OvenCLIApplication::parseResult res = OvenCLIApplication::parseCommandLine(argc, argv, enableCrashHandler);
|
||||
|
||||
switch(res) {
|
||||
case OvenCLIApplication::CLIMode:
|
||||
|
|
Loading…
Reference in a new issue