mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 20:58:07 -06:00
Disable move constructor where it is sensible
This commit is contained in:
@@ -71,7 +71,7 @@ namespace RSS
|
||||
class Application final : public BaseApplication
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(Application)
|
||||
Q_DISABLE_COPY_MOVE(Application)
|
||||
|
||||
public:
|
||||
Application(int &argc, char **argv);
|
||||
|
||||
@@ -35,7 +35,7 @@ class QtLocalPeer;
|
||||
class ApplicationInstanceManager : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(ApplicationInstanceManager)
|
||||
Q_DISABLE_COPY_MOVE(ApplicationInstanceManager)
|
||||
|
||||
public:
|
||||
explicit ApplicationInstanceManager(const QString &appId, QObject *parent = nullptr);
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace Log
|
||||
class FileLogger : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(FileLogger)
|
||||
Q_DISABLE_COPY_MOVE(FileLogger)
|
||||
|
||||
public:
|
||||
enum FileLogAgeType
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace Ui
|
||||
class StacktraceDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(StacktraceDialog)
|
||||
Q_DISABLE_COPY_MOVE(StacktraceDialog)
|
||||
|
||||
public:
|
||||
explicit StacktraceDialog(QWidget *parent = nullptr);
|
||||
|
||||
Reference in New Issue
Block a user