mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Specify server to use (the one of default profile)
This commit is contained in:
parent
c9a1346d76
commit
bb8acc7134
2 changed files with 3 additions and 0 deletions
|
@ -216,6 +216,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
COperationDialog dialog;
|
||||
|
||||
dialog.setCurrentServerId(config.getProfile().server);
|
||||
dialog.setOperation(OperationUninstall);
|
||||
dialog.setUninstallComponents(components);
|
||||
|
||||
|
@ -244,6 +245,7 @@ int main(int argc, char *argv[])
|
|||
if (step != Done)
|
||||
{
|
||||
COperationDialog dialog;
|
||||
dialog.setCurrentServerId(config.getProfile().server);
|
||||
dialog.setOperation(config.getSrcServerDirectory().isEmpty() ? OperationInstall:OperationMigrate);
|
||||
|
||||
if (!dialog.exec()) return 1;
|
||||
|
|
|
@ -40,6 +40,7 @@ public:
|
|||
|
||||
void setOperation(OperationType operation);
|
||||
void setUninstallComponents(const SComponents &components);
|
||||
void setCurrentServerId(const QString &serverId) { m_currentServerId = serverId; }
|
||||
|
||||
public slots:
|
||||
void onAbortClicked();
|
||||
|
|
Loading…
Reference in a new issue