Fix functions "private/public"

This commit is contained in:
Samuele E. Locatelli
2020-10-24 12:41:34 +02:00
parent b466235c58
commit 998ca04b99
+10 -6
View File
@@ -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
}
}