Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] unpatched


Hello Good Folks,

There remains a few patches from me that I'd appreciate looked at in the near future...
fixes for 49883, 66300 and one debug.ui strings without a defect number.

Thanks,
Tanya

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.481
diff -u -r1.481 ChangeLog
--- ChangeLog	16 Jun 2004 05:47:36 -0000	1.481
+++ ChangeLog	16 Jun 2004 17:35:13 -0000
@@ -1,3 +1,11 @@
+2004-06-16 Tanya Wolff
+	Fix for Bug 49883:  duplicate mnemonics on editor preferences page.
+	Also flipped label/checkbox presentation for "bold" so the mnemonic would work. 
+	Removed unneeded keys.
+	
+	* src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java
+	* src/org/eclipse/cdt/internal/ui/preferences/PreferencesMessages.properties
+		
 2004-06-15 Bogdan Gheorghe
 	Fix for Bug 60490:  "Selected resource" option should only be enabled/disabled 
 	based on selections in the Navigator and C/C++ Projects views - search now
Index: src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java,v
retrieving revision 1.34
diff -u -r1.34 CEditorPreferencePage.java
--- src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	8 Jun 2004 17:40:04 -0000	1.34
+++ src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	16 Jun 2004 17:35:14 -0000
@@ -414,14 +414,10 @@
 		gd.horizontalAlignment = GridData.BEGINNING;
 		foregroundColorButton.setLayoutData(gd);
 
-		label = new Label(stylesComposite, SWT.LEFT);
-		label.setText(PreferencesMessages.getString("CEditorPreferencePage.colorPage.bold")); //$NON-NLS-1$
-		gd = new GridData();
-		gd.horizontalAlignment = GridData.BEGINNING;
-		label.setLayoutData(gd);
-
 		fBoldCheckBox = new Button(stylesComposite, SWT.CHECK);
+		fBoldCheckBox.setText(PreferencesMessages.getString("CEditorPreferencePage.colorPage.bold"));
 		gd = new GridData(GridData.FILL_HORIZONTAL);
+		gd.horizontalSpan=2;
 		gd.horizontalAlignment = GridData.BEGINNING;
 		fBoldCheckBox.setLayoutData(gd);
 
Index: src/org/eclipse/cdt/internal/ui/preferences/PreferencesMessages.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/PreferencesMessages.properties,v
retrieving revision 1.19
diff -u -r1.19 PreferencesMessages.properties
--- src/org/eclipse/cdt/internal/ui/preferences/PreferencesMessages.properties	11 Jun 2004 18:38:39 -0000	1.19
+++ src/org/eclipse/cdt/internal/ui/preferences/PreferencesMessages.properties	16 Jun 2004 17:35:14 -0000
@@ -70,9 +70,8 @@
 CEditorPreferencePage.empty_input=Empty input
 
 CEditorPreferencePage.ContentAssistPage.searchGroupTitle=Search scope for completion proposals:
-CEditorPreferencePage.ContentAssistPage.searchGroupCurrentFileOption=&Search current file and included files
+CEditorPreferencePage.ContentAssistPage.searchGroupCurrentFileOption=S&earch current file and included files
 CEditorPreferencePage.ContentAssistPage.searchGroupCurrentProjectOption=Search current &project
-CEditorPreferencePage.ContentAssistPage.searchGroupCurrentProjectAndDependenciesOption=Search current project and &dependent projects
 CEditorPreferencePage.ContentAssistPage.insertSingleProposalAutomatically=&Insert single proposals automatically
 CEditorPreferencePage.ContentAssistPage.showOnlyProposalsWithCorrectVisibility=Show only proposals visible in the invocation conte&xt
 CEditorPreferencePage.ContentAssistPage.showProposalsInAlphabeticalOrder=Present proposals in a&lphabetical order
@@ -102,15 +101,15 @@
 CEditorPreferencePage.colorPage.custom=C&ustom
 CEditorPreferencePage.colorPage.foreground=Fo&reground:
 CEditorPreferencePage.colorPage.color=C&olor:
-CEditorPreferencePage.colorPage.bold=&Bold:
+CEditorPreferencePage.colorPage.bold=&Bold
 CEditorPreferencePage.colorPage.preview=Preview:
 CEditorPreferencePage.behaviorPage.textFont=Text &font:
 CEditorPreferencePage.behaviorPage.tabWidth=Displayed &tab width:
-CEditorPreferencePage.behaviorPage.marginColumn=Print margin col&umn:
-CEditorPreferencePage.behaviorPage.tabSpace=Insert &space for tabs
+CEditorPreferencePage.behaviorPage.marginColumn=Print m&argin column:
+CEditorPreferencePage.behaviorPage.tabSpace=&Insert space for tabs
 CEditorPreferencePage.behaviorPage.matchingBrackets=Highlight &matching brackets
-CEditorPreferencePage.behaviorPage.highlightLine=Highlight &current line
-CEditorPreferencePage.behaviorPage.printMargin=Show print &margin
+CEditorPreferencePage.behaviorPage.highlightLine=&Highlight current line
+CEditorPreferencePage.behaviorPage.printMargin=Show &print margin
 CEditorPreferencePage.behaviorPage.showLineNumbers=Show &line numbers
 CEditorPreferencePage.behaviorPage.showOverviewRuler=Show &overview ruler
 CEditorPreferencePage.behaviorPage.appearanceColorOptions=Appearance color options
@@ -181,5 +180,5 @@
 #Editor Preferences
 CEditorPreferencePage.behaviourPage.EditorGroup=Editor
 CEditorPreferencePage.behaviourPage.EnableEditorProblemAnnotation=Enable editor problem annotation
-CEditorPreferencePage.behaviourPage.Annotations=Annotations
+
 
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/ChangeLog,v
retrieving revision 1.272
diff -u -r1.272 ChangeLog
--- ChangeLog	9 Jun 2004 19:11:54 -0000	1.272
+++ ChangeLog	10 Jun 2004 19:03:30 -0000
@@ -1,3 +1,7 @@
+2004-06-10 Tanya Wolff
+	Externalized strings for thread suspension.
+	* src/org/eclipse/cdt/debug/ui/CDebugUIPluginResources.properties
+	
 2004-06-09 Mikhail Khodjaiants
 	New implementation of the "Refresh" actions for registers and shared libraries.
 	* icons/full/clcl16/auto_refresh_co.gif: new
Index: src/org/eclipse/cdt/debug/ui/CDebugUIPluginResources.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPluginResources.properties,v
retrieving revision 1.8
diff -u -r1.8 CDebugUIPluginResources.properties
--- src/org/eclipse/cdt/debug/ui/CDebugUIPluginResources.properties	2 Jun 2004 22:18:11 -0000	1.8
+++ src/org/eclipse/cdt/debug/ui/CDebugUIPluginResources.properties	10 Jun 2004 19:03:31 -0000
@@ -254,3 +254,8 @@
 internal.ui.CDTDebugModelPresentation.at=at
 internal.ui.CDebugImageDescriptorRegistry.Allocating_image_for_wrong_display=Allocating image for wrong display
 ui.CDebugUIPlugin.Error=Error
+
+internal.ui.CDTDebugModelPresentation.Suspended_Watchpoint_triggered_Old_New=Suspended (Watchpoint triggered old value: {0}; new value: {1})
+internal.ui.CDTDebugModelPresentation.Suspended_Watchpoint_out_of_scope=Suspended (Watchpoint out of scope)
+internal.ui.CDTDebugModelPresentation.Suspended_Breakpoint_hit=Suspended (Breakpoint hit)
+internal.ui.CDTDebugModelPresentation.Suspended_Shared_lib_event=Suspended (Shared library event)
\ No newline at end of file
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.468
diff -u -r1.468 ChangeLog
--- ChangeLog	9 Jun 2004 14:54:28 -0000	1.468
+++ ChangeLog	9 Jun 2004 17:40:17 -0000
@@ -1,10 +1,15 @@
+ChangeLog
+
+2004-06-08 Tanya Wolff
+	Fix for Bug 66300 - i18n: File Types preferences buttons don't expand
+	
+	* src/org/eclipse/cdt/internal/ui/preferences/CFileTypesPreferences.java
+
 2004-06-09 Bogdan Gheorghe
 	Fix for  Bug 66273 - Opening declaration causes stack overflow
 	
 	* src/org/eclipse/cdt/internal/ui/util/EditorUtility.java
 	
-ChangeLog
-
 2004-06-08 Tanya Wolff
 	Fix for Bug 63467 - choice format for displaying plural
 	
Index: src/org/eclipse/cdt/internal/ui/preferences/CFileTypesPreferenceBlock.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/CFileTypesPreferenceBlock.java,v
retrieving revision 1.3
diff -u -r1.3 CFileTypesPreferenceBlock.java
--- src/org/eclipse/cdt/internal/ui/preferences/CFileTypesPreferenceBlock.java	9 Jun 2004 12:37:56 -0000	1.3
+++ src/org/eclipse/cdt/internal/ui/preferences/CFileTypesPreferenceBlock.java	9 Jun 2004 17:40:17 -0000
@@ -222,13 +222,12 @@
 		// New button
 		
 		fBtnNew		= new Button(buttonPane, SWT.PUSH);
-		gridData	= new GridData(GridData.FILL_HORIZONTAL);
+		fBtnNew.setText(PreferencesMessages.getString("CFileTypesPreferenceBlock.New..."));  //$NON-NLS-1$
 		
+		gridData	= new GridData(GridData.FILL_HORIZONTAL);
 		gridData.widthHint	= SWTUtil.getButtonWidthHint(fBtnNew);
 		gridData.heightHint	= SWTUtil.getButtonHeigthHint(fBtnNew);
-		
 		fBtnNew.setLayoutData(gridData);
-		fBtnNew.setText(PreferencesMessages.getString("CFileTypesPreferenceBlock.New..."));  //$NON-NLS-1$
 		
 		fBtnNew.addListener(SWT.Selection, new Listener() {
 			public void handleEvent(Event e) {
@@ -239,13 +238,12 @@
 		// Remove button
 		
 		fBtnRemove 	= new Button(buttonPane, SWT.PUSH);
+		fBtnRemove.setText(PreferencesMessages.getString("CFileTypesPreferenceBlock.Remove"));  //$NON-NLS-1$
+		
 		gridData	= new GridData(GridData.FILL_HORIZONTAL);
-
 		gridData.widthHint	= SWTUtil.getButtonWidthHint(fBtnRemove);
 		gridData.heightHint	= SWTUtil.getButtonHeigthHint(fBtnRemove);
-
 		fBtnRemove.setLayoutData(gridData);
-		fBtnRemove.setText(PreferencesMessages.getString("CFileTypesPreferenceBlock.Remove"));  //$NON-NLS-1$
 		
 		fBtnRemove.addListener(SWT.Selection, new Listener() {
 			public void handleEvent(Event e) {

Back to the top