Fix functions "private/public"
This commit is contained in:
@@ -130,30 +130,30 @@ namespace Client2020.BrowserTools
|
||||
}
|
||||
|
||||
// Get the option of virtual Keyb configured
|
||||
private bool isVirtualKeybConfigured()
|
||||
public bool isVirtualKeybConfigured()
|
||||
{
|
||||
return Config.ClientConfig.ShowVirtualKeyboard;
|
||||
}
|
||||
|
||||
// Get the option of virtual Keyb configured
|
||||
private bool isHMIenabled()
|
||||
public bool isHMIenabled()
|
||||
{
|
||||
return Config.VendorHmiConfig.Enabled;
|
||||
}
|
||||
|
||||
// Get the option of PROD Enabled
|
||||
private bool isPRODenabled()
|
||||
public bool isPRODenabled()
|
||||
{
|
||||
return Config.ProdSoftwareConfig.Enabled;
|
||||
}
|
||||
|
||||
// Get the SCM option
|
||||
private bool isSCMVisualStyle()
|
||||
public bool isSCMVisualStyle()
|
||||
{
|
||||
return Config.ClientConfig.IsSCM;
|
||||
}
|
||||
|
||||
private string openExternalBrowser(string proc)
|
||||
public string openExternalBrowser(string proc)
|
||||
{
|
||||
Process.Start(proc);
|
||||
return "";
|
||||
@@ -222,7 +222,6 @@ namespace Client2020.BrowserTools
|
||||
|
||||
#endregion PROCESSES_METHODS
|
||||
|
||||
|
||||
#region FILESYSTEM_METHODS
|
||||
public string getOSdriveList()
|
||||
{
|
||||
@@ -525,6 +524,11 @@ namespace Client2020.BrowserTools
|
||||
return files;
|
||||
}
|
||||
|
||||
public void cleanFileWatcher()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endregion FILESYSTEM_METHODS
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user