diff options
author | Petr Mrázek <peterix@gmail.com> | 2020-01-09 15:31:32 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2020-01-09 15:31:32 +0100 |
commit | bc98181ec274dfc933c5c0207943f9de1dbaf1d1 (patch) | |
tree | d74fd6ac1bbcff13cd8a8df63696f48c06a91544 /api/logic/InstanceCopyTask.h | |
parent | 6a095deea62556eaa3c10b03a1426c751b22fc7c (diff) | |
download | PrismLauncher-bc98181ec274dfc933c5c0207943f9de1dbaf1d1.tar.gz PrismLauncher-bc98181ec274dfc933c5c0207943f9de1dbaf1d1.tar.bz2 PrismLauncher-bc98181ec274dfc933c5c0207943f9de1dbaf1d1.zip |
GH-2769 add an option to not copy play time when copying instances
Diffstat (limited to 'api/logic/InstanceCopyTask.h')
-rw-r--r-- | api/logic/InstanceCopyTask.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/api/logic/InstanceCopyTask.h b/api/logic/InstanceCopyTask.h index 8dd55b40..6465e92d 100644 --- a/api/logic/InstanceCopyTask.h +++ b/api/logic/InstanceCopyTask.h @@ -15,7 +15,7 @@ class MULTIMC_LOGIC_EXPORT InstanceCopyTask : public InstanceTask { Q_OBJECT public: - explicit InstanceCopyTask(InstancePtr origInstance, bool copySaves); + explicit InstanceCopyTask(InstancePtr origInstance, bool copySaves, bool keepPlaytime); protected: //! Entry point for tasks. @@ -28,4 +28,5 @@ private: /* data */ QFuture<bool> m_copyFuture; QFutureWatcher<bool> m_copyFutureWatcher; std::unique_ptr<IPathMatcher> m_matcher; + bool m_keepPlaytime; }; |