File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
sources/net.sf.j2s.java.org.eclipse.swt/src/org/eclipse/swt Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3393,7 +3393,7 @@ void updateSelection(int index) {
33933393 if (i != index && control != null && !control .isDisposed ()){
33943394 control .setVisible (false );
33953395 }
3396- items [i ].handle .style .zIndex = ( i + 1 ) + "" ;
3396+ items [i ].handle .style .zIndex = i + 1 ;
33973397
33983398 //if (index == i) continue;
33993399 String cssName = items [i ].handle .className ;
@@ -3483,7 +3483,7 @@ void updateSelection(int index) {
34833483 CSSStyle s = items [index ].handle .style ;
34843484 s .width = w + "px" ;
34853485 }
3486- items [index ].handle .style .zIndex = (( index >= offset ) ? items .length + 1 : -1 ) + "" ;
3486+ items [index ].handle .style .zIndex = (index >= offset ) ? items .length + 1 : -1 ;
34873487 //System.out.println("????");
34883488
34893489 if (this .width != 0 ) {
Original file line number Diff line number Diff line change 22window [ "org.eclipse.swt.registered" ] = false ;
33
44/*
5- * Standing for SWT CSS, with all "S" into "$". We love dollors . -zhou renjian
5+ * Standing for SWT CSS, with all "S" into "$". We love dollars . -zhou renjian
66 *
77 * ATTENTION: Should only be used for SWT only.
88 */
@@ -234,7 +234,7 @@ $WTC$$.registerCSS = function (clazzName, cssText) {
234234 }
235235
236236 /*
237- * This method will generated a lot non existed *.css resouce requests (404) for server.
237+ * This method will generated a lot non existed *.css resource requests (404) for server.
238238 */
239239 var len = $WTC$$ . themes . length ;
240240 for ( var i = 0 ; i < len ; i ++ ) {
You can’t perform that action at this time.
0 commit comments