removed debug non-xip option. RCL_2_1
authorwpaul
Fri, 24 Jul 2009 18:24:09 -0500
branchRCL_2_1
changeset 377 317abfb598e3
parent 374 385441ae2a07
child 378 c33af689a71a
removed debug non-xip option.
debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java
debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/RomImageTab.java
debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/messages.properties
--- a/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java	Thu Jul 23 14:44:31 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java	Fri Jul 24 18:24:09 2009 -0500
@@ -427,7 +427,6 @@
 	
 	public static void setRomImgTab(ILaunchConfigurationWorkingCopy configuration, IProject project) {
 
-		configuration.setAttribute( PreferenceConstants.J_PN_DebugNonXip, false);
 		configuration.setAttribute( PreferenceConstants.J_PN_DownloadRomImage, false);
 		configuration.setAttribute( PreferenceConstants.J_PN_RomImagePath, ""); //$NON-NLS-1$
 		configuration.setAttribute( PreferenceConstants.J_PN_DownloadAddress, 0);
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/RomImageTab.java	Thu Jul 23 14:44:31 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/RomImageTab.java	Fri Jul 24 18:24:09 2009 -0500
@@ -63,8 +63,6 @@
 	private Button epoc32DirBrowse;
 	
 	private Button logUnresolvedModules;
-	//private Button logUnresolvedSym;
-	private Button debugNonXip;
 
 
 	/* (non-Javadoc)
@@ -287,17 +285,6 @@
 			}
 		});			
 		
-		debugNonXip = createCheckButton(parseRomLogGroup.getGroup(), Messages.getString("RomLogFileTab.15")); //$NON-NLS-1$
-		data = new GridData(GridData.FILL_HORIZONTAL);
-		data.horizontalSpan = 3;
-		debugNonXip.setLayoutData(data);
-		debugNonXip.setToolTipText(Messages.getString("RomLogFileTab.16")); //$NON-NLS-1$
-		debugNonXip.addSelectionListener(new SelectionAdapter() {
-			public void widgetSelected(SelectionEvent e) {
-				updateLaunchConfigurationDialog();
-			}
-		});		
-
 	}
 	
 	/* (non-Javadoc)
@@ -316,7 +303,6 @@
 			romLogFilePath.setText(configuration.getAttribute( PreferenceConstants.J_PN_RomLogFilePath , "" )); //$NON-NLS-1$	
 			epoc32DirPath.setText(configuration.getAttribute( PreferenceConstants.J_PN_SymbianKitEpoc32Dir , "" )); //$NON-NLS-1$
 			logUnresolvedModules.setSelection(configuration.getAttribute( PreferenceConstants.J_PN_LogUnresolved , false ));
-			debugNonXip.setSelection(configuration.getAttribute( PreferenceConstants.J_PN_DebugNonXip , false ));
 
 			downloadImgGroup.setSelection(configuration.getAttribute( PreferenceConstants.J_PN_DownloadRomImage , false ));
 			osImagePath.setText(configuration.getAttribute( PreferenceConstants.J_PN_RomImagePath , "" )); //$NON-NLS-1$
@@ -345,7 +331,6 @@
 		}	
 		configuration.setAttribute( PreferenceConstants.J_PN_SymbianKitEpoc32Dir, epoc32Dir);
 		configuration.setAttribute( PreferenceConstants.J_PN_LogUnresolved, logUnresolvedModules.getSelection());		
-		configuration.setAttribute( PreferenceConstants.J_PN_DebugNonXip, debugNonXip.getSelection());
 		
 		configuration.setAttribute( PreferenceConstants.J_PN_DownloadRomImage, downloadImgGroup.getSelection());
 		configuration.setAttribute( PreferenceConstants.J_PN_RomImagePath, osImagePath.getText());
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/messages.properties	Thu Jul 23 14:44:31 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/messages.properties	Fri Jul 24 18:24:09 2009 -0500
@@ -135,8 +135,6 @@
 RomLogFileTab.12=Epoc32 dir
 RomLogFileTab.13=Log unresolved modules
 RomLogFileTab.14=This check box allows the user to see the list of unresolved modules from the log file
-RomLogFileTab.15=Debug non-XIP executables
-RomLogFileTab.16=This check box enables the debugging of non-XIP modules i.e. modules from ROFS image 
 RomLogFileTab.17=Symbian ROM log file not specified
 RomLogFileTab.18=Specified Symbian ROM log file does not exist
 RomLogFileTab.19=Epoc32 directory not specified