1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

Fixed the loading failure issue of Control Flow Graph view (#951)

(Window ->Show View ->Other... ->C/C++->Control Flow Graph).
This commit is contained in:
张博 2024-12-18 01:15:10 +08:00 committed by GitHub
parent a24f93daa9
commit 3269718d58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,8 @@ import org.osgi.framework.BundleContext;
*/ */
public class ControlFlowGraphPlugin extends AbstractUIPlugin { public class ControlFlowGraphPlugin extends AbstractUIPlugin {
// The plug-in ID // The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.cdt.codan.ui.cfgview"; //$NON-NLS-1$ //Fixed the loading failure issue of Control Flow Graph view (Window ->Show View ->Other... ->C/C++->Control Flow Graph).
public static final String PLUGIN_ID = "org.eclipse.cdt.codan.ui.example.cfgview"; //$NON-NLS-1$
// The shared instance // The shared instance
private static ControlFlowGraphPlugin plugin; private static ControlFlowGraphPlugin plugin;