Bug 518772 - Change SWT Browser template to not propose SWT.MOZILLA
style

SWT.MOZILLA is being deprecated in SWT and it's noop now. The template
is changed to propose the other browser available on all platforms -
Webkit.

Change-Id: Ibee9eae76148df9324551b7ccaa096b99d07c1c6
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/org.eclipse.jdt.ui/templates/default-swttemplates.xml b/org.eclipse.jdt.ui/templates/default-swttemplates.xml
index 9e069f0..3b7a810 100644
--- a/org.eclipse.jdt.ui/templates/default-swttemplates.xml
+++ b/org.eclipse.jdt.ui/templates/default-swttemplates.xml
@@ -2,7 +2,7 @@
 
 <!--
 /*******************************************************************************
- * Copyright (c) 2007, 2013 IBM Corporation and others.
+ * Copyright (c) 2007, 2017 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -237,7 +237,7 @@
 	id="org.eclipse.jdt.ui.text.codetemplates.swt.browser" 
 	context="swt-statements" enabled="true" autoinsert="false"
 	
->${browserType:newType(org.eclipse.swt.browser.Browser)} ${browser:newName(org.eclipse.swt.browser.Browser)}= new ${browserType}(${parent:var(org.eclipse.swt.widgets.Composite)}, ${style:link(SWT.NONE, SWT.MOZILLA)});
+>${browserType:newType(org.eclipse.swt.browser.Browser)} ${browser:newName(org.eclipse.swt.browser.Browser)}= new ${browserType}(${parent:var(org.eclipse.swt.widgets.Composite)}, ${style:link(SWT.NONE, SWT.WEBKIT)});
 ${browser}.setLayoutData(new ${gridDataType:newType(org.eclipse.swt.layout.GridData)}(SWT.${horizontal:link(FILL, BEGINNING, CENTER, END)}, SWT.${vertical:link(FILL, TOP, CENTER, BOTTOM)}, ${hex:link(true, false)}, ${vex:link(true, false)}));
 ${browser}.setUrl(${word_selection}${});
 ${imp:import(org.eclipse.swt.SWT)}${cursor}</template>