1 Commits

Author SHA1 Message Date
zach 82518006c3 revert toaster enum 2026-06-05 19:45:43 +02:00
2 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -24,7 +24,8 @@ CheckOptions:
readability-identifier-naming.StaticConstantCase: UPPER_CASE readability-identifier-naming.StaticConstantCase: UPPER_CASE
readability-identifier-naming.StaticConstantPrefix: k readability-identifier-naming.StaticConstantPrefix: k
readability-identifier-naming.VariableCase: camelBack readability-identifier-naming.VariableCase: camelBack
HeaderFilterRegex: "" WarningsAsErrors: "*"
HeaderFilterRegex: ".*"
FormatStyle: file FormatStyle: file
... ...
+1 -2
View File
@@ -1,6 +1,5 @@
#pragma once #pragma once
#include <cstdint>
#include <qobject.h> #include <qobject.h>
#include <qqmlintegration.h> #include <qqmlintegration.h>
#include <qqmllist.h> #include <qqmllist.h>
@@ -21,7 +20,7 @@ Q_PROPERTY(int timeout READ timeout CONSTANT)
Q_PROPERTY(Type type READ type CONSTANT) Q_PROPERTY(Type type READ type CONSTANT)
public: public:
enum class Type: std::uint8_t { enum class Type {
Info = 0, Info = 0,
Success, Success,
Warning, Warning,