diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-08 22:07:15 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-08 22:07:15 -0500 |
| commit | a5469ae4e0668c36e4bf36bf7395fa25073b0bc6 (patch) | |
| tree | 6e9aa66b30a3fca5aee21fb02078e372da7aea7d /src/moapplication.h | |
| parent | 54bf7e1fa230c78e98f429559b51a6be42f29e4a (diff) | |
renamed SingleInstance to MOMultiProcess
rewrote some comments to avoid using "instance"
Diffstat (limited to 'src/moapplication.h')
| -rw-r--r-- | src/moapplication.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/moapplication.h b/src/moapplication.h index 7423c897..91b8023a 100644 --- a/src/moapplication.h +++ b/src/moapplication.h @@ -24,7 +24,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QFileSystemWatcher>
class Settings;
-class SingleInstance;
+class MOMultiProcess;
class Instance;
class PluginContainer;
@@ -40,7 +40,7 @@ public: // sets up everything, creates the main window and runs it
//
- int run(SingleInstance& si);
+ int run(MOMultiProcess& multiProcess);
virtual bool notify(QObject* receiver, QEvent* event);
@@ -55,7 +55,7 @@ private: QString m_DefaultStyle;
cl::CommandLine& m_cl;
- int doOneRun(SingleInstance& singleInstance);
+ int doOneRun(MOMultiProcess& multiProcess);
std::optional<Instance> getCurrentInstance();
std::optional<int> setupInstanceLoop(Instance& currentInstance, PluginContainer& pc);
|
