Skip to content
Snippets Groups Projects
Commit f09d610e authored by luyikei's avatar luyikei Committed by Hugo Beauzée-Luyssen
Browse files

SettingValue: Remove extra ;


Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
parent 4c294467
No related branches found
Tags 2.1.2
No related merge requests found
......@@ -35,7 +35,7 @@
class SettingValue : public QObject
{
Q_OBJECT
Q_DISABLE_COPY( SettingValue );
Q_DISABLE_COPY( SettingValue )
public:
enum Type
{
......@@ -62,7 +62,7 @@ class SettingValue : public QObject
NotEmpty = 1 << 4, ///< Forces the value not to be empty (likely to be used only with Strings)
Runtime = 1 << 5, ///< Defines a variable that is not meant to be saved
};
Q_DECLARE_FLAGS( Flags, Flag );
Q_DECLARE_FLAGS( Flags, Flag )
/**
* \brief Constructs a setting value with its default value and description
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment