From 1f30b0febb634ea3778529eb82c2a3cb2217c2c5 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Fri, 22 Apr 2005 21:32:40 +0000 Subject: [PATCH] Initalize the particiapants of the source lookup director when converting from an old memento. --- debug/org.eclipse.cdt.debug.ui/ChangeLog | 5 +++++ .../cdt/debug/ui/sourcelookup/DefaultSourceLocator.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 4478eb512d2..44c759da5e5 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -1,3 +1,8 @@ +2005-04-22 Mikhail Khodjaiants + Initalize the particiapants of the source lookup director when converting + from an old memento. + * DefaultSourceLocator.java + 2005-04-21 Mikhail Khodjaiants Changed the labels of the "Source Lookup Path" preference page to "Common Source Lookup Path". * PreferenceMessages.properties diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/sourcelookup/DefaultSourceLocator.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/sourcelookup/DefaultSourceLocator.java index caf6d805f61..a9c3c39937b 100644 --- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/sourcelookup/DefaultSourceLocator.java +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/sourcelookup/DefaultSourceLocator.java @@ -91,5 +91,6 @@ public class DefaultSourceLocator extends CSourceLookupDirector { cons.add( 0, defaultContainer ); } setSourceContainers( (ISourceContainer[])cons.toArray( new ISourceContainer[cons.size()] ) ); + initializeParticipants(); } }