From 44a3cd9a5b9c6a6ebbd10fbcf2f107fad47bdf3d Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Thu, 24 Apr 2003 15:24:13 +0000 Subject: [PATCH] Update the actions of the 'Shared Libraries' view even if the viewer's input is the same as before. --- debug/org.eclipse.cdt.debug.ui/ChangeLog | 5 +++++ .../internal/ui/views/sharedlibs/SharedLibrariesView.java | 1 + 2 files changed, 6 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog index e0351adf869..d0712f04cf8 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -1,3 +1,8 @@ +2003-04-24 Mikhail Khodjaiants + Update the actions of the 'Shared Libraries' view even if the viewer's input + is the same as before. + * SharedLibrariesView.java + 2003-04-23 Mikhail Khodjaiants If error occurs when acquiring the signal information from gdb the error message should be displayed in the 'Signals' view. diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/sharedlibs/SharedLibrariesView.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/sharedlibs/SharedLibrariesView.java index d54209c674d..45386e0dec5 100644 --- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/sharedlibs/SharedLibrariesView.java +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/sharedlibs/SharedLibrariesView.java @@ -254,6 +254,7 @@ public class SharedLibrariesView extends AbstractDebugEventHandlerView Object current = getViewer().getInput(); if ( current != null && current.equals( slm ) ) { + updateObjects(); return; } showViewer();