mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:40:11 +02: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->setFocusPolicy(Qt::StrongFocus);
|
||||||
_glWidget->setFocus();
|
_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()));
|
showCursor(Cursor::Manager::lookupIcon(_preferredCursor.get()));
|
||||||
|
|
||||||
// enable mouse tracking; otherwise, we only get drag events
|
// enable mouse tracking; otherwise, we only get drag events
|
||||||
|
|
|
@ -77,7 +77,7 @@ int main(int argc, const char* argv[]) {
|
||||||
QCommandLineOption protocolVersionOption(
|
QCommandLineOption protocolVersionOption(
|
||||||
"protocolVersion",
|
"protocolVersion",
|
||||||
"Writes the protocol version base64 signature to a file?",
|
"Writes the protocol version base64 signature to a file?",
|
||||||
"path" // Why??
|
"path"
|
||||||
);
|
);
|
||||||
QCommandLineOption noUpdaterOption(
|
QCommandLineOption noUpdaterOption(
|
||||||
"no-updater",
|
"no-updater",
|
||||||
|
@ -99,8 +99,8 @@ int main(int argc, const char* argv[]) {
|
||||||
QCommandLineOption serverContentPathOption(
|
QCommandLineOption serverContentPathOption(
|
||||||
"serverContentPath",
|
"serverContentPath",
|
||||||
"Path to find server content.", // What content??
|
"Path to find server content.", // What content??
|
||||||
"serverContentPath"
|
"path"
|
||||||
); // This data type will not be familiar to users.
|
);
|
||||||
QCommandLineOption overrideAppLocalDataPathOption(
|
QCommandLineOption overrideAppLocalDataPathOption(
|
||||||
"cache",
|
"cache",
|
||||||
"Set test cache.",
|
"Set test cache.",
|
||||||
|
|
Loading…
Reference in a new issue