mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
adapt quickoutline fragment to new project config
This commit is contained in:
parent
9c561c2bd3
commit
016b3567fd
1 changed files with 4 additions and 4 deletions
|
@ -22,12 +22,12 @@ class QuickOutlineFragment2 extends AbstractGeneratorFragment2 {
|
|||
extension XtextGeneratorNaming
|
||||
|
||||
override generate() {
|
||||
if (projectConfig.eclipsePluginManifest != null) {
|
||||
projectConfig.eclipsePluginManifest.requiredBundles += "org.eclipse.xtext.ui"
|
||||
if (projectConfig.eclipsePlugin.manifest != null) {
|
||||
projectConfig.eclipsePlugin.manifest.requiredBundles += "org.eclipse.xtext.ui"
|
||||
}
|
||||
|
||||
if (projectConfig.eclipsePluginPluginXml != null) {
|
||||
projectConfig.eclipsePluginPluginXml.entries += '''
|
||||
if (projectConfig.eclipsePlugin.pluginXml != null) {
|
||||
projectConfig.eclipsePlugin.pluginXml.entries += '''
|
||||
<!-- Quick Outline -->
|
||||
<extension
|
||||
point="org.eclipse.ui.handlers">
|
||||
|
|
Loading…
Reference in a new issue