Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2016-01-27 17:38:25 +0000
committerDoug Schaefer2016-01-27 17:41:56 +0000
commit095dd5160e9acbb8ae2114be2b1babf0c5968c4e (patch)
tree612f40becf327d36155b5d9d86fe7d7b44f6e0ba /qt/org.eclipse.cdt.qt.ui
parent9e7b1ce85622efbd478220b81a6f031e179abe18 (diff)
downloadorg.eclipse.cdt-095dd5160e9acbb8ae2114be2b1babf0c5968c4e.tar.gz
org.eclipse.cdt-095dd5160e9acbb8ae2114be2b1babf0c5968c4e.tar.xz
org.eclipse.cdt-095dd5160e9acbb8ae2114be2b1babf0c5968c4e.zip
Qt - Include tern deps in build. Clean up some old files.
The tern deps were in node_modules which is gitignored. Created a Makefile to copy those deps to a new directory and we check that in. Also removed some files that were used to get ANTLR which we aren't using. And cleaned out the commented out reload button from the plugin.xml. Change-Id: I09a5ecb298bbdd9272f9b4a7540d525edb55c4fa
Diffstat (limited to 'qt/org.eclipse.cdt.qt.ui')
-rw-r--r--qt/org.eclipse.cdt.qt.ui/plugin.xml52
1 files changed, 0 insertions, 52 deletions
diff --git a/qt/org.eclipse.cdt.qt.ui/plugin.xml b/qt/org.eclipse.cdt.qt.ui/plugin.xml
index c7cf2e9c99d..327cb18b55b 100644
--- a/qt/org.eclipse.cdt.qt.ui/plugin.xml
+++ b/qt/org.eclipse.cdt.qt.ui/plugin.xml
@@ -89,58 +89,6 @@
</launchConfigurationTabGroup>
</extension>
<extension
- point="org.eclipse.ui.handlers">
- <handler
- class="org.eclipse.cdt.qt.ui.handlers.ReloadAnalyzerHandler"
- commandId="org.eclipse.cdt.qt.ui.commands.sampleCommand">
- </handler>
- </extension>
- <extension
- point="org.eclipse.ui.bindings">
- <key
- commandId="org.eclipse.cdt.qt.ui.commands.sampleCommand"
- contextId="org.eclipse.ui.contexts.window"
- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
- sequence="M1+6">
- </key>
- </extension>
- <extension
- point="org.eclipse.ui.menus">
- <menuContribution
- locationURI="menu:help">
- <command
- commandId="org.eclipse.cdt.qt.ui.commands.sampleCommand"
- id="org.eclipse.cdt.qt.ui.menus.sampleCommand"
- mnemonic="R"
- style="push">
- </command>
- </menuContribution>
- <menuContribution
- locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
- <toolbar
- id="org.eclipse.cdt.qt.ui.toolbars.sampleToolbar">
- <command
- commandId="org.eclipse.cdt.qt.ui.commands.sampleCommand"
- icon="icons/sample.gif"
- id="org.eclipse.cdt.qt.ui.toolbars.sampleCommand"
- tooltip="Reloads the QML Anayzer Tern Server">
- </command>
- </toolbar>
- </menuContribution>
- </extension>
- <extension
- point="org.eclipse.ui.commands">
- <category
- id="org.eclipse.cdt.qt.ui.commands.category"
- name="Qt Commands">
- </category>
- <command
- categoryId="org.eclipse.cdt.qt.ui.commands.category"
- id="org.eclipse.cdt.qt.ui.commands.sampleCommand"
- name="Reload QML Analyzer">
- </command>
- </extension>
- <extension
point="org.eclipse.ui.workbench.texteditor.hyperlinkDetectorTargets">
<target
id="org.eclipse.cdt.qt.ui.qml"

Back to the top