mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 23:35:48 +02:00
Fix for bug 77251: Need protected access to DisassemblyView's createVerticalRuler() method.
This commit is contained in:
parent
e6d2af3d71
commit
d14425742c
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-11-09 Mikhail Khodjaiants
|
||||||
|
Fix for bug 77251: Need protected access to DisassemblyView's createVerticalRuler() method.
|
||||||
|
* DisassemblyView.java
|
||||||
|
|
||||||
2004-11-05 Mikhail Khodjaiants
|
2004-11-05 Mikhail Khodjaiants
|
||||||
Cleanup.
|
Cleanup.
|
||||||
* PreferenceMessages.properties
|
* PreferenceMessages.properties
|
||||||
|
|
|
@ -369,7 +369,7 @@ public class DisassemblyView extends AbstractDebugEventHandlerView
|
||||||
*
|
*
|
||||||
* @return the vertical ruler
|
* @return the vertical ruler
|
||||||
*/
|
*/
|
||||||
private IVerticalRuler createVerticalRuler() {
|
protected IVerticalRuler createVerticalRuler() {
|
||||||
IVerticalRuler ruler = new VerticalRuler( VERTICAL_RULER_WIDTH, getAnnotationAccess() );
|
IVerticalRuler ruler = new VerticalRuler( VERTICAL_RULER_WIDTH, getAnnotationAccess() );
|
||||||
return ruler;
|
return ruler;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue