Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDT/User/NewIn90"

< CDT
(Editor)
(API modifications)
Line 22: Line 22:
 
'''org.eclipse.cdt.dsf.gdb'''
 
'''org.eclipse.cdt.dsf.gdb'''
 
# The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed.  It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)
 
# The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed.  It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)
 +
 +
'''org.eclipse.cdt.managedbuilder.ui'''
 +
# The class ToolChainSelectionPage has been removed. It was being used by a wizard that was never used and that was removed.
 +
 +
'''org.eclipse.cdt.ui'''
 +
# The classes NewCDTProjectWizard, ProjectTypePage, TemplateSelectionPage have been removed. The wizard and its pages were never used and were not fully functional.
 +
# The extension point '''projectTypePages''' has been removed. It was being used by a wizard that was never used and that was removed.

Revision as of 14:29, 28 December 2015

General

Editor

  • When code completion is invoked in a function call expression, appropriate substitutions are suggested for each of the function parameters. link

Function call.png

Parser

Build

  • The "Symbols" settings category (gnu.c.compiler.category.symbols) under "GCC C compiler" has been removed and its content has been merged with the Preprocessor (gnu.c.compiler.category.preprocessor) category. link

Debug

Bugs Fixed in this Release

See Bugzilla report Bugs Fixed in CDT 9.0

API modifications

With CDT 9.0, some public API are being modified. Below is the list of changes that are not backwards-compatible that extenders could trip on.

org.eclipse.cdt.dsf.gdb

  1. The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed. It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)

org.eclipse.cdt.managedbuilder.ui

  1. The class ToolChainSelectionPage has been removed. It was being used by a wizard that was never used and that was removed.

org.eclipse.cdt.ui

  1. The classes NewCDTProjectWizard, ProjectTypePage, TemplateSelectionPage have been removed. The wizard and its pages were never used and were not fully functional.
  2. The extension point projectTypePages has been removed. It was being used by a wizard that was never used and that was removed.

Back to the top