Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
321eb344
Commit
321eb344
authored
Feb 21, 2017
by
Don Gagne
Browse files
Fix typo
parent
12ac1893
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Settings/VideoSettings.cc
View file @
321eb344
...
...
@@ -12,10 +12,10 @@
#include
<QQmlEngine>
#include
<QtQml>
const
char
*
VideoSettings
::
V
ideoSettingsGroupName
=
"video"
;
const
char
*
VideoSettings
::
v
ideoSettingsGroupName
=
"video"
;
VideoSettings
::
VideoSettings
(
QObject
*
parent
)
:
SettingsGroup
(
V
ideoSettingsGroupName
,
QString
()
/* root settings group */
,
parent
)
:
SettingsGroup
(
v
ideoSettingsGroupName
,
QString
()
/* root settings group */
,
parent
)
{
QQmlEngine
::
setObjectOwnership
(
this
,
QQmlEngine
::
CppOwnership
);
qmlRegisterUncreatableType
<
VideoSettings
>
(
"QGroundControl.SettingsManager"
,
1
,
0
,
"VideoSettings"
,
"Reference only"
);
...
...
src/Settings/VideoSettings.h
View file @
321eb344
...
...
@@ -19,7 +19,7 @@ class VideoSettings : public SettingsGroup
public:
VideoSettings
(
QObject
*
parent
=
NULL
);
static
const
char
*
V
ideoSettingsGroupName
;
static
const
char
*
v
ideoSettingsGroupName
;
private:
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment