Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 160924 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/tptp/monitoring/rcp/symptom/internal/view/SymptomDBView.java (-1 / +1 lines)
Lines 511-517 Link Here
511
		data.verticalAlignment = SWT.TOP;
511
		data.verticalAlignment = SWT.TOP;
512
512
513
		buttons.setLayoutData(data);
513
		buttons.setLayoutData(data);
514
		
514
				
515
		int len = computeButtonsMinWidth(buttons);
515
		int len = computeButtonsMinWidth(buttons);
516
		newBtn = new Button(buttons, SWT.PUSH);
516
		newBtn = new Button(buttons, SWT.PUSH);
517
		newBtn.setText(Messages.SYMPTOM_RCP_NEW);
517
		newBtn.setText(Messages.SYMPTOM_RCP_NEW);
(-)src/org/eclipse/tptp/monitoring/rcp/symptom/internal/ApplicationActionBarAdvisor.java (-1 / +1 lines)
Lines 85-91 Link Here
85
	protected void makeFileActions(final IWorkbenchWindow window){
85
	protected void makeFileActions(final IWorkbenchWindow window){
86
		
86
		
87
		newAction = new WizardLauncherAction(SymptomRCPUtils.NEW_ACTION_ID, NewSymptomDBWizard.class, Messages.SYMPTOM_RCP_MENU_NEW , SDbPluginImages.IMG_SYMPTOM_DB);
87
		newAction = new WizardLauncherAction(SymptomRCPUtils.NEW_ACTION_ID, NewSymptomDBWizard.class, Messages.SYMPTOM_RCP_MENU_NEW , SDbPluginImages.IMG_SYMPTOM_DB);
88
		
88
89
		closeAction = ActionFactory.CLOSE.create(window);
89
		closeAction = ActionFactory.CLOSE.create(window);
90
		closeAllAction = ActionFactory.CLOSE_ALL.create(window);
90
		closeAllAction = ActionFactory.CLOSE_ALL.create(window);
91
				
91
				
(-)src/org/eclipse/tptp/monitoring/rcp/symptom/internal/actions/WizardLauncherAction.java (+3 lines)
Lines 40-45 Link Here
40
		this.wizardClass = wizardClass;
40
		this.wizardClass = wizardClass;
41
		this.actionLabel = actionLabel;
41
		this.actionLabel = actionLabel;
42
		this.actionImageDesc = actionImageDesc;
42
		this.actionImageDesc = actionImageDesc;
43
		
44
		if(actionLabel != null)
45
			setToolTipText(actionLabel.replaceAll("&", ""));
43
	}
46
	}
44
	
47
	
45
	public String getId() {
48
	public String getId() {

Return to bug 160924