mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Post-merge 344, compile and warning cleanup
This commit is contained in:
parent
29c60548cc
commit
19284b171a
4 changed files with 182 additions and 190 deletions
|
|
@ -299,7 +299,6 @@ namespace PepperDash.Essentials.Devices.Common
|
|||
{
|
||||
var comm = CommFactory.GetControlPropertiesConfig(dc);
|
||||
|
||||
uint id = 0x00;
|
||||
GlsOccupancySensorBase occSensor = null;
|
||||
|
||||
occSensor = new GlsOirCCn(comm.CresnetIdInt, Global.ControlSystem);
|
||||
|
|
@ -314,7 +313,6 @@ namespace PepperDash.Essentials.Devices.Common
|
|||
{
|
||||
var comm = CommFactory.GetControlPropertiesConfig(dc);
|
||||
|
||||
uint id = 0x00;
|
||||
GlsOccupancySensorBase occSensor = null;
|
||||
|
||||
occSensor = new GlsOdtCCn(comm.CresnetIdInt, Global.ControlSystem);
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ namespace PepperDash.Essentials
|
|||
request.Header.SetHeaderValue("Content-Type", "application/json");
|
||||
request.ContentString = postBody;
|
||||
|
||||
Client.DispatchAsync(request, PostConnectionCallback);
|
||||
var err = Client.DispatchAsync(request, PostConnectionCallback);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -316,6 +316,7 @@ namespace PepperDash.Essentials
|
|||
/// <param name="err"></param>
|
||||
void PostConnectionCallback(HttpClientResponse resp, HTTP_CALLBACK_ERROR err)
|
||||
{
|
||||
Debug.Console(1, this, "PostConnectionCallback err: {0}", err);
|
||||
try
|
||||
{
|
||||
if (resp != null && resp.Code == 200)
|
||||
|
|
@ -326,11 +327,7 @@ namespace PepperDash.Essentials
|
|||
ServerReconnectTimer = null;
|
||||
}
|
||||
|
||||
#warning The SSE Client from a previous session might need to be killed...
|
||||
//if (SseClient == null)
|
||||
//{
|
||||
ConnectSseClient(null);
|
||||
//}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -79,9 +79,6 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||
StringBuilder SearchStringBuilder = new StringBuilder();
|
||||
BoolFeedback SearchStringBackspaceVisibleFeedback;
|
||||
|
||||
#warning WHAT THE HELL happened to this?????
|
||||
BoolFeedback LayoutButtonEnableFeedback;
|
||||
|
||||
ModalDialog IncomingCallModal;
|
||||
|
||||
eKeypadMode KeypadMode;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue