From 407a759ee32da37b7677a94573beb05044cb3663 Mon Sep 17 00:00:00 2001 From: jwetzell Date: Wed, 17 Jul 2019 14:08:13 -0500 Subject: [PATCH] More cleanup --- .../Classes/Communication/SharpOSC/UDPListener.cs | 1 - .../Classes/Communication/SharpOSC/UDPSender.cs | 4 ---- qController.Standard/Pages/ControlPage.xaml.cs | 4 ++-- 3 files changed, 2 insertions(+), 7 deletions(-) mode change 100755 => 100644 qController.Standard/Classes/Communication/SharpOSC/UDPSender.cs diff --git a/qController.Standard/Classes/Communication/SharpOSC/UDPListener.cs b/qController.Standard/Classes/Communication/SharpOSC/UDPListener.cs index 0fb61b7..956718c 100644 --- a/qController.Standard/Classes/Communication/SharpOSC/UDPListener.cs +++ b/qController.Standard/Classes/Communication/SharpOSC/UDPListener.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; using System.Net.Sockets; using System.Net; using System.Threading; diff --git a/qController.Standard/Classes/Communication/SharpOSC/UDPSender.cs b/qController.Standard/Classes/Communication/SharpOSC/UDPSender.cs old mode 100755 new mode 100644 index aadb108..57e0ea7 --- a/qController.Standard/Classes/Communication/SharpOSC/UDPSender.cs +++ b/qController.Standard/Classes/Communication/SharpOSC/UDPSender.cs @@ -1,10 +1,6 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using System.Net.Sockets; using System.Net; -using System.Threading; namespace SharpOSC { diff --git a/qController.Standard/Pages/ControlPage.xaml.cs b/qController.Standard/Pages/ControlPage.xaml.cs index f867073..ad8174b 100644 --- a/qController.Standard/Pages/ControlPage.xaml.cs +++ b/qController.Standard/Pages/ControlPage.xaml.cs @@ -50,13 +50,13 @@ namespace qController } } - private void PromptForWorkspace(List workspaces) + private void PromptForWorkspace(List workspaces) { ActionSheetConfig config = new ActionSheetConfig(); config.SetTitle("Select Workspace"); for (int i = 0; i < workspaces.Count; i++) { - QInfo workspace = workspaces[i]; + QWorkspaceInfo workspace = workspaces[i]; config.Add(workspace.displayName, new Action(() => { Console.WriteLine("Workspace Selected: " + workspace.displayName); qController.Connect(workspace.uniqueID);