mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Removed comments. Changed a parameter type label.
This commit is contained in:
parent
4a74ba5b9f
commit
04a4437ace
2 changed files with 3 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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.",
|
||||
|
|
Loading…
Reference in a new issue