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
Libraries
KSANECore
Commits
c8717a5a
Commit
c8717a5a
authored
Sep 02, 2022
by
Heiko Becker
Browse files
Remove unnecessary semicolon
parent
0c094dbd
Pipeline
#226248
passed with stage
in 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/option.h
View file @
c8717a5a
...
...
@@ -33,19 +33,19 @@ public:
/** This enumeration describes the type of the option. */
enum
OptionType
{
TypeDetectFail
,
TypeBool
,
TypeInteger
,
TypeDouble
,
TypeValueList
,
TypeString
,
TypeGamma
,
TypeAction
};
Q_ENUM
(
OptionType
)
;
Q_ENUM
(
OptionType
)
/** This enumeration describes the unit of the value of the option,
* if any. */
enum
OptionUnit
{
UnitNone
,
UnitPixel
,
UnitBit
,
UnitMilliMeter
,
UnitDPI
,
UnitPercent
,
UnitMicroSecond
,
UnitSecond
};
Q_ENUM
(
OptionUnit
)
;
Q_ENUM
(
OptionUnit
)
/** This enumeration describes the current statue of the value of
* the option, indicating if this option should be displayed or not. */
enum
OptionState
{
StateHidden
,
StateDisabled
,
StateActive
};
Q_ENUM
(
OptionState
)
;
Q_ENUM
(
OptionState
)
explicit
Option
(
QObject
*
parent
=
nullptr
);
~
Option
()
override
;
...
...
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