Changed the source formatting of the HttpServer class to match the rest of the project.

This commit is contained in:
Michael Möller
2012-10-28 14:06:50 +00:00
parent 87641aebbd
commit 69b0050008
2 changed files with 322 additions and 356 deletions

View File

@@ -267,9 +267,9 @@ namespace OpenHardwareMonitor.GUI {
runWebServerMenuItem, settings);
runWebServer.Changed += delegate(object sender, EventArgs e) {
if (runWebServer.Value)
runWebServer.Value = server.startHTTPListener();
runWebServer.Value = server.StartHTTPListener();
else
server.stopHTTPListener();
server.StopHTTPListener();
};
InitializePlotForm();