diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2021-01-29 08:48:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-29 08:48:01 +0100 |
| commit | 8606bf70c76252e20f888264bfbdedde0f1c8754 (patch) | |
| tree | ac827454e054eb3aceaa139562ef3dd27ca94d55 /src/moapplication.h | |
| parent | 136dc17e011deda53f6e82e6c8b23ee701be3158 (diff) | |
| parent | a88d3436cc6b2c24ab05400a5ad5e9e67cb95db8 (diff) | |
Merge pull request #1384 from Holt59/add-pick-argument
Implement --pick argument.
Diffstat (limited to 'src/moapplication.h')
| -rw-r--r-- | src/moapplication.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/moapplication.h b/src/moapplication.h index 65180ece..d10db320 100644 --- a/src/moapplication.h +++ b/src/moapplication.h @@ -47,7 +47,7 @@ public: // called from main() each time MO "restarts", loads settings, plugins,
// OrganizerCore and the current instance
//
- int setup(MOMultiProcess& multiProcess);
+ int setup(MOMultiProcess& multiProcess, bool forceSelect);
// shows splash, starts an api check, shows the main window and blocks until
// MO exits
@@ -85,7 +85,7 @@ private: std::unique_ptr<OrganizerCore> m_core;
void externalMessage(const QString& message);
- std::unique_ptr<Instance> getCurrentInstance();
+ std::unique_ptr<Instance> getCurrentInstance(bool forceSelect);
std::optional<int> setupInstanceLoop(Instance& currentInstance, PluginContainer& pc);
void purgeOldFiles();
};
|
