Solve conflicts

This commit is contained in:
Sebastian
2022-06-09 18:33:37 -05:00
4 changed files with 105 additions and 19 deletions

View File

@@ -29,6 +29,10 @@ public:
m_online = online;
}
void setOfflineName(const QString &offlineName) {
m_offlineName = offlineName;
}
void setProfiler(BaseProfilerFactory *profiler) {
m_profiler = profiler;
}
@@ -71,6 +75,7 @@ private slots:
private:
BaseProfilerFactory *m_profiler = nullptr;
bool m_online = true;
QString m_offlineName;
InstancePtr m_instance;
QWidget * m_parentWidget = nullptr;
InstanceWindow *m_console = nullptr;