diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-01-24 18:12:02 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2014-01-24 18:12:02 +0100 |
commit | 7d5787025aa5cebf6778f71e79f248f10b8541c9 (patch) | |
tree | bb80eb6a4e313b19da00a9ad8d0e1248aaa50212 /logic/BaseInstaller.h | |
parent | 156bc8f27656c115bf1b023cd4ebc5f629df3887 (diff) | |
download | MultiMC-7d5787025aa5cebf6778f71e79f248f10b8541c9.tar MultiMC-7d5787025aa5cebf6778f71e79f248f10b8541c9.tar.gz MultiMC-7d5787025aa5cebf6778f71e79f248f10b8541c9.tar.lz MultiMC-7d5787025aa5cebf6778f71e79f248f10b8541c9.tar.xz MultiMC-7d5787025aa5cebf6778f71e79f248f10b8541c9.zip |
Change naming from Derp -> OneSix until the new instance type supports legacy
Diffstat (limited to 'logic/BaseInstaller.h')
-rw-r--r-- | logic/BaseInstaller.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/logic/BaseInstaller.h b/logic/BaseInstaller.h index 08f78bfc..df7eab89 100644 --- a/logic/BaseInstaller.h +++ b/logic/BaseInstaller.h @@ -17,7 +17,7 @@ #include <memory> -class DerpInstance; +class OneSixInstance; class QDir; class QString; @@ -26,11 +26,11 @@ class BaseInstaller public: BaseInstaller(); - virtual bool canApply(DerpInstance *instance) const { return true; } - bool isApplied(DerpInstance *on); + virtual bool canApply(OneSixInstance *instance) const { return true; } + bool isApplied(OneSixInstance *on); - virtual bool add(DerpInstance *to); - virtual bool remove(DerpInstance *from); + virtual bool add(OneSixInstance *to); + virtual bool remove(OneSixInstance *from); protected: virtual QString id() const = 0; |