mirror of https://github.com/procxx/kepka.git
Delete Instance constructor, since its member constructor is deleted
This commit is contained in:
parent
e4478fd0fd
commit
f526586bfb
|
@ -56,8 +56,8 @@ public:
|
||||||
|
|
||||||
Instance(const Instance &other) = delete;
|
Instance(const Instance &other) = delete;
|
||||||
Instance &operator=(const Instance &other) = delete;
|
Instance &operator=(const Instance &other) = delete;
|
||||||
Instance(Instance &&other) = default;
|
Instance(Instance &&other) = delete;
|
||||||
Instance &operator=(Instance &&other) = default;
|
Instance &operator=(Instance &&other) = delete;
|
||||||
|
|
||||||
QString systemLangCode() const;
|
QString systemLangCode() const;
|
||||||
QString cloudLangCode() const;
|
QString cloudLangCode() const;
|
||||||
|
|
Loading…
Reference in New Issue