Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Khodjaiants2003-04-24 15:24:13 +0000
committerMikhail Khodjaiants2003-04-24 15:24:13 +0000
commit44a3cd9a5b9c6a6ebbd10fbcf2f107fad47bdf3d (patch)
tree31b83cdd72b17d5ba99ddffbfa8a343b01825da8 /debug/org.eclipse.cdt.debug.ui
parent70f30ce631e7f31a16ae6c6a54e50da75ab3a2c4 (diff)
downloadorg.eclipse.cdt-44a3cd9a5b9c6a6ebbd10fbcf2f107fad47bdf3d.tar.gz
org.eclipse.cdt-44a3cd9a5b9c6a6ebbd10fbcf2f107fad47bdf3d.tar.xz
org.eclipse.cdt-44a3cd9a5b9c6a6ebbd10fbcf2f107fad47bdf3d.zip
Update the actions of the 'Shared Libraries' view even if the viewer's input is the same as before.
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/ChangeLog5
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/sharedlibs/SharedLibrariesView.java1
2 files changed, 6 insertions, 0 deletions
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();

Back to the top