mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
[fix] Inconsistent API usage led to internal control variable not set correctly
This commit is contained in:
parent
e7d2f267ca
commit
186495b744
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ public class SystemNewConnectionPromptObject
|
|||
*/
|
||||
public SystemNewConnectionPromptObject()
|
||||
{
|
||||
systemTypes = RSECorePlugin.getDefault().getRegistry().getSystemTypeNames();
|
||||
setSystemTypes(RSECorePlugin.getDefault().getRegistry().getSystemTypeNames());
|
||||
isRootPrompt = true;
|
||||
}
|
||||
/**
|
||||
|
@ -65,7 +65,7 @@ public class SystemNewConnectionPromptObject
|
|||
public SystemNewConnectionPromptObject(SystemNewConnectionPromptObject parent, String systemType)
|
||||
{
|
||||
this.parent = parent;
|
||||
this.systemTypes = new String[] {systemType};
|
||||
setSystemTypes(new String[] {systemType});
|
||||
}
|
||||
|
||||
// ----------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue