mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 16:58:06 -06:00
Disable move constructor where it is sensible
This commit is contained in:
@@ -37,7 +37,7 @@ class SearchPluginManager;
|
||||
class SearchDownloadHandler : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(SearchDownloadHandler)
|
||||
Q_DISABLE_COPY_MOVE(SearchDownloadHandler)
|
||||
|
||||
friend class SearchPluginManager;
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ class SearchPluginManager;
|
||||
class SearchHandler : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(SearchHandler)
|
||||
Q_DISABLE_COPY_MOVE(SearchHandler)
|
||||
|
||||
friend class SearchPluginManager;
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ class SearchHandler;
|
||||
class SearchPluginManager : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(SearchPluginManager)
|
||||
Q_DISABLE_COPY_MOVE(SearchPluginManager)
|
||||
|
||||
public:
|
||||
SearchPluginManager();
|
||||
|
||||
Reference in New Issue
Block a user