Removed comments. Changed a parameter type label.

This commit is contained in:
Penguin-Guru 2022-05-28 13:47:24 -07:00
parent 4a74ba5b9f
commit 04a4437ace
2 changed files with 3 additions and 6 deletions

View file

@ -1474,9 +1474,6 @@ Application::Application(
_glWidget->setFocusPolicy(Qt::StrongFocus);
_glWidget->setFocus();
/*if (parser.isSet("system-cursor")) { // This is now done above, since the conditional was needed anyway.
_preferredCursor.set(Cursor::Manager::getIconName(Cursor::Icon::SYSTEM));
}*/
showCursor(Cursor::Manager::lookupIcon(_preferredCursor.get()));
// enable mouse tracking; otherwise, we only get drag events

View file

@ -77,7 +77,7 @@ int main(int argc, const char* argv[]) {
QCommandLineOption protocolVersionOption(
"protocolVersion",
"Writes the protocol version base64 signature to a file?",
"path" // Why??
"path"
);
QCommandLineOption noUpdaterOption(
"no-updater",
@ -99,8 +99,8 @@ int main(int argc, const char* argv[]) {
QCommandLineOption serverContentPathOption(
"serverContentPath",
"Path to find server content.", // What content??
"serverContentPath"
); // This data type will not be familiar to users.
"path"
);
QCommandLineOption overrideAppLocalDataPathOption(
"cache",
"Set test cache.",