From 1d420a7c6d5a0198c11d58c4d82100cf1a1afcce Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 14 Apr 2011 21:25:02 +0200 Subject: [PATCH] compilation fix --- .../debugger/ui/breakpoints/BreakpointWithHighlighter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/debugger/impl/src/com/intellij/debugger/ui/breakpoints/BreakpointWithHighlighter.java b/java/debugger/impl/src/com/intellij/debugger/ui/breakpoints/BreakpointWithHighlighter.java index 4f0f3d15c370..e8dff17807f2 100644 --- a/java/debugger/impl/src/com/intellij/debugger/ui/breakpoints/BreakpointWithHighlighter.java +++ b/java/debugger/impl/src/com/intellij/debugger/ui/breakpoints/BreakpointWithHighlighter.java @@ -654,7 +654,7 @@ public abstract class BreakpointWithHighlighter extends Breakpoint { return new AnAction() { public void actionPerformed(AnActionEvent e) { ENABLED = !ENABLED; - DebuggerManagerEx.getInstanceEx(getProject()).getBreakpointManager().fireBreakpointChanged(BreakpointWithHighlighter.this); + DebuggerManagerEx.getInstanceEx(BreakpointWithHighlighter.this.getProject()).getBreakpointManager().fireBreakpointChanged(BreakpointWithHighlighter.this); updateUI(); } };