mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Added support of the old launch configurations.
This commit is contained in:
parent
1ac89011a2
commit
acc90cd2d0
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-10-27 Mikhail Khodjaiants
|
||||||
|
Added support of the old launch configurations.
|
||||||
|
* plugin.xml
|
||||||
|
* plugin.properties
|
||||||
|
|
||||||
2003-10-27 Mikhail Khodjaiants
|
2003-10-27 Mikhail Khodjaiants
|
||||||
Changed the initialization of 'SourceLookupBlock'.
|
Changed the initialization of 'SourceLookupBlock'.
|
||||||
* SourceLookupBlock.java
|
* SourceLookupBlock.java
|
||||||
|
|
|
@ -82,3 +82,4 @@ DisableVariablesAction.label=Disable
|
||||||
DisableVariablesAction.tooltip=Disable Selected Variables
|
DisableVariablesAction.tooltip=Disable Selected Variables
|
||||||
|
|
||||||
DefaultSourceLocator.name=Default C/C++ Source Locator
|
DefaultSourceLocator.name=Default C/C++ Source Locator
|
||||||
|
OldDefaultSourceLocator.name=Default C/C++ Source Locator (old)
|
||||||
|
|
|
@ -1247,10 +1247,15 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.debug.core.sourceLocators">
|
point="org.eclipse.debug.core.sourceLocators">
|
||||||
<sourceLocator
|
<sourceLocator
|
||||||
class="org.eclipse.cdt.debug.ui.sourcelookup.DefaultSourceLocator"
|
|
||||||
name="%DefaultSourceLocator.name"
|
name="%DefaultSourceLocator.name"
|
||||||
|
class="org.eclipse.cdt.debug.ui.sourcelookup.DefaultSourceLocator"
|
||||||
id="org.eclipse.cdt.debug.ui.DefaultSourceLocator">
|
id="org.eclipse.cdt.debug.ui.DefaultSourceLocator">
|
||||||
</sourceLocator>
|
</sourceLocator>
|
||||||
|
<sourceLocator
|
||||||
|
class="org.eclipse.cdt.debug.ui.sourcelookup.DefaultSourceLocator"
|
||||||
|
name="%OldDefaultSourceLocator.name"
|
||||||
|
id="org.eclipse.cdt.launch.DefaultSourceLocator">
|
||||||
|
</sourceLocator>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
Loading…
Add table
Reference in a new issue