mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 15:29:26 +01:00
Use C# naming conventions. Removed some code redundancies.
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
parent
9e8a8a77a5
commit
07f2de6786
@ -42,7 +42,7 @@ namespace XenAdmin.ConsoleView
|
||||
void Activate();
|
||||
void DisconnectAndDispose();
|
||||
void Pause();
|
||||
void Unpause();
|
||||
void UnPause();
|
||||
void SendCAD();
|
||||
Image Snapshot();
|
||||
bool SendScanCodes { set; }
|
||||
|
@ -433,7 +433,7 @@ namespace XenAdmin.ConsoleView
|
||||
{
|
||||
}
|
||||
|
||||
public void Unpause()
|
||||
public void UnPause()
|
||||
{
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -245,7 +245,7 @@ namespace XenAdmin.ConsoleView
|
||||
if (RemoteConsole != null)
|
||||
{
|
||||
wasPaused = false;
|
||||
RemoteConsole.Unpause();
|
||||
RemoteConsole.UnPause();
|
||||
}
|
||||
}
|
||||
|
||||
@ -577,7 +577,7 @@ namespace XenAdmin.ConsoleView
|
||||
if (wasPaused)
|
||||
RemoteConsole.Pause();
|
||||
else
|
||||
RemoteConsole.Unpause();
|
||||
RemoteConsole.UnPause();
|
||||
ConnectToRemoteConsole();
|
||||
|
||||
if (wasFocused)
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user