1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Bug 82264: Enhance the Shared Libraries view. Support for the symbols loading operations.

This commit is contained in:
Mikhail Khodjaiants 2005-02-15 03:56:47 +00:00
parent ff7b845bec
commit 4a8913dad8

View file

@ -149,7 +149,7 @@ public class CModule extends CDebugElement implements ICModule {
* @see org.eclipse.cdt.debug.core.model.ICModule#canLoadSymbols()
*/
public boolean canLoadSymbols() {
return ( getDebugTarget().isSuspended() && (canModifySymbolsSource() || !areSymbolsLoaded()) );
return ( getDebugTarget().isSuspended() && !areSymbolsLoaded() );
}
/* (non-Javadoc)