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 326636 | Differences between
and this patch

Collapse All | Expand All

(-)plugin.xml (-1 / +1 lines)
Lines 680-686 Link Here
680
	  </factory>
680
	  </factory>
681
       <factory
681
       <factory
682
            class="org.eclipse.cdt.dsf.debug.internal.ui.actions.RetargettableActionAdapterFactory"
682
            class="org.eclipse.cdt.dsf.debug.internal.ui.actions.RetargettableActionAdapterFactory"
683
            adaptableType="org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyView">
683
            adaptableType="org.eclipse.cdt.dsf.debug.internal.ui.disassembly.provisional.IDisassemblyPart">
684
         <adapter type="org.eclipse.debug.ui.actions.IRunToLineTarget"/>
684
         <adapter type="org.eclipse.debug.ui.actions.IRunToLineTarget"/>
685
         <adapter type="org.eclipse.cdt.debug.internal.ui.actions.IResumeAtLineTarget"/>
685
         <adapter type="org.eclipse.cdt.debug.internal.ui.actions.IResumeAtLineTarget"/>
686
         <adapter type="org.eclipse.cdt.debug.internal.ui.actions.IMoveToLineTarget"/>
686
         <adapter type="org.eclipse.cdt.debug.internal.ui.actions.IMoveToLineTarget"/>
(-)src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/DisassemblyPart.java (-4 / +4 lines)
Lines 628-633 Link Here
628
		}
628
		}
629
629
630
		initializeViewerFont(fViewer);
630
		initializeViewerFont(fViewer);
631
		fDocument = createDocument();
632
		fViewer.setDocument(fDocument, new AnnotationModel());
633
		JFaceResources.getFontRegistry().addListener(fPropertyChangeListener);
634
631
		createActions();
635
		createActions();
632
		hookRulerContextMenu();
636
		hookRulerContextMenu();
633
		hookContextMenu();
637
		hookContextMenu();
Lines 639-648 Link Here
639
			}
643
			}
640
		});
644
		});
641
645
642
		fDocument = createDocument();
643
		fViewer.setDocument(fDocument, new AnnotationModel());
644
		JFaceResources.getFontRegistry().addListener(fPropertyChangeListener);
645
646
		fErrorColor = getSharedColors().getColor(new RGB(96, 0, 0));
646
		fErrorColor = getSharedColors().getColor(new RGB(96, 0, 0));
647
		fInstructionColor = getSharedColors().getColor(new RGB(0, 0, 96));
647
		fInstructionColor = getSharedColors().getColor(new RGB(0, 0, 96));
648
		fSourceColor = getSharedColors().getColor(new RGB(64, 0, 80));
648
		fSourceColor = getSharedColors().getColor(new RGB(64, 0, 80));

Return to bug 326636