debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/ConnectToDeviceSection.java
branchRCL_2_4
changeset 953 68b6a294ab01
parent 913 f1dffcbe3e11
child 959 a9c84e6d779f
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/ConnectToDeviceSection.java	Sun Feb 14 20:52:26 2010 -0600
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/ConnectToDeviceSection.java	Mon Feb 15 13:20:03 2010 -0600
@@ -43,7 +43,7 @@
 	 * @param unifiedLaunchOptionsPage 
 	 * 
 	 */
-	public ConnectToDeviceSection(LaunchOptionsData data, UnifiedLaunchOptionsPage launchOptionsPage) {
+	public ConnectToDeviceSection(LaunchWizardData data, UnifiedLaunchOptionsPage launchOptionsPage) {
 		super(data, "Connect to device");
 		this.launchOptionsPage = launchOptionsPage;
 		manager = RemoteConnectionsActivator.getConnectionsManager();
@@ -69,7 +69,7 @@
 	}
 
 	/** Get the simple status for the connection state */
-	static IStatus revalidate(LaunchOptionsData data) {
+	static IStatus revalidate(LaunchWizardData data) {
 		IStatus status = Status.OK_STATUS;
 		
 		if (data.getConnection() == null) {
@@ -80,7 +80,7 @@
 	}
 	
 	static String getStandardPNPMessage() {
-		return "You may plug in a device over USB or activate it over WLAN, or create a new connection now for your device or simulator.";
+		return "You may plug in a device over USB or activate it over WLAN, or create a new connection now for your device.";
 	}
 
 	@Override
@@ -99,7 +99,7 @@
 	}
 	
 	@Override
-	protected AbstractLaunchSettingsDialog createChangeSettingsDialog(Shell shell, LaunchOptionsData dialogData) {
+	protected AbstractLaunchSettingsDialog createChangeSettingsDialog(Shell shell, LaunchWizardData dialogData) {
 		return new ConnectToDeviceDialog(shell, dialogData);
 	}