Merge pull request #32 from simon04/HyperlinkData

Fix build: "unable to resolve class HyperlinkData"
This commit is contained in:
Emmanuel Dupuy 2015-05-29 06:06:09 +02:00
commit 7ebc16a617

View File

@ -37,9 +37,9 @@ class WebXmlFilePage extends TypeHyperlinkPage implements UriGettable, ContentSa
String getSyntaxStyle() { SyntaxConstants.SYNTAX_STYLE_XML }
protected boolean isHyperlinkEnabled(HyperlinkData hyperlinkData) { hyperlinkData.enabled }
protected boolean isHyperlinkEnabled(HyperlinkPage.HyperlinkData hyperlinkData) { hyperlinkData.enabled }
protected void openHyperlink(int x, int y, HyperlinkData hyperlinkData) {
protected void openHyperlink(int x, int y, HyperlinkPage.HyperlinkData hyperlinkData) {
if (hyperlinkData.enabled) {
// Save current position in history
def location = textArea.getLocationOnScreen()