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);