Index: /FCKeditor/trunk/_dev/lint.conf
===================================================================
--- /FCKeditor/trunk/_dev/lint.conf	(revision 75)
+++ /FCKeditor/trunk/_dev/lint.conf	(revision 76)
@@ -51,5 +51,5 @@
 +trailing_comma_in_array      # extra comma is not recommended in array initializers
 +assign_to_function_call      # assignment to a function call
--parseint_missing_radix       # parseInt missing radix parameter
++parseint_missing_radix       # parseInt missing radix parameter
 
 
Index: /FCKeditor/trunk/_test/manual/fckdomrange/test1.html
===================================================================
--- /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 75)
+++ /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 76)
@@ -96,5 +96,5 @@
 {
 	var e = oRange.Window.document.getElementsByTagName( document.getElementById('xTag').value )[0] ;
-	oRange.SetStart( e, parseInt( document.getElementById('xPosition').value ) ) ;
+	oRange.SetStart( e, parseInt( document.getElementById('xPosition').value, 10 ) ) ;
 	AutoSelect() ;
 	UpdateDetails() ;
@@ -105,5 +105,5 @@
 {
 	var e = oRange.Window.document.getElementsByTagName( document.getElementById('xTag').value )[0] ;
-	oRange.SetEnd( e, parseInt( document.getElementById('xPosition').value ) ) ;
+	oRange.SetEnd( e, parseInt( document.getElementById('xPosition').value, 10 ) ) ;
 	AutoSelect() ;
 	UpdateDetails() ;
Index: /FCKeditor/trunk/editor/_source/classes/fcktoolbarbuttonui.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fcktoolbarbuttonui.js	(revision 75)
+++ /FCKeditor/trunk/editor/_source/classes/fcktoolbarbuttonui.js	(revision 76)
@@ -120,5 +120,5 @@
 	var e = this.MainElement ;
 
-	switch ( parseInt( newState ) )
+	switch ( parseInt( newState, 10 ) )
 	{
 		case FCK_TRISTATE_OFF :
Index: /FCKeditor/trunk/editor/_source/commandclasses/fck_othercommands.js
===================================================================
--- /FCKeditor/trunk/editor/_source/commandclasses/fck_othercommands.js	(revision 75)
+++ /FCKeditor/trunk/editor/_source/commandclasses/fck_othercommands.js	(revision 76)
@@ -82,5 +82,5 @@
 FCKFontSizeCommand.prototype.Execute = function( fontSize )
 {
-	if ( typeof( fontSize ) == 'string' ) fontSize = parseInt(fontSize) ;
+	if ( typeof( fontSize ) == 'string' ) fontSize = parseInt(fontSize, 10) ;
 
 	if ( fontSize == null || fontSize == '' )
Index: /FCKeditor/trunk/editor/_source/internals/fckconfig.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckconfig.js	(revision 75)
+++ /FCKeditor/trunk/editor/_source/internals/fckconfig.js	(revision 76)
@@ -75,5 +75,5 @@
 
 		else if ( sVal.length > 0 && !isNaN( sVal ) )	// If it is a number.
-			this.PageConfig[ sKey ] = parseInt( sVal ) ;
+			this.PageConfig[ sKey ] = parseInt( sVal, 10 ) ;
 
 		else										// In any other case it is a string.
Index: /FCKeditor/trunk/editor/_source/internals/fcktools.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fcktools.js	(revision 75)
+++ /FCKeditor/trunk/editor/_source/internals/fcktools.js	(revision 76)
@@ -126,5 +126,5 @@
 FCKTools.ConvertStyleSizeToHtml = function( size )
 {
-	return size.EndsWith( '%' ) ? size : parseInt( size ) ;
+	return size.EndsWith( '%' ) ? size : parseInt( size, 10 ) ;
 }
 
Index: /FCKeditor/trunk/editor/dialog/fck_smiley.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_smiley.html	(revision 75)
+++ /FCKeditor/trunk/editor/dialog/fck_smiley.html	(revision 76)
@@ -62,5 +62,5 @@
 var aImages		= FCKConfig.SmileyImages ;
 var iCols		= FCKConfig.SmileyColumns ;
-var iColWidth	= parseInt( 100 / iCols ) ;
+var iColWidth	= parseInt( 100 / iCols, 10 ) ;
 
 var i = 0 ;
Index: /FCKeditor/trunk/editor/dialog/fck_table.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_table.html	(revision 75)
+++ /FCKeditor/trunk/editor/dialog/fck_table.html	(revision 76)
@@ -47,5 +47,5 @@
 		if (iWidth.indexOf('%') >= 0)			// Percentual = %
 		{
-			iWidth = parseInt( iWidth.substr(0,iWidth.length - 1) ) ;
+			iWidth = parseInt( iWidth.substr(0,iWidth.length - 1), 10 ) ;
 			document.getElementById('selWidthType').value = "percent" ;
 		}
Index: /FCKeditor/trunk/editor/fckdialog.html
===================================================================
--- /FCKeditor/trunk/editor/fckdialog.html	(revision 75)
+++ /FCKeditor/trunk/editor/fckdialog.html	(revision 76)
@@ -85,5 +85,5 @@
 		{
 			if ( document.all )
-				window.dialogHeight = ( parseInt( window.dialogHeight ) + iDiff ) + 'px' ;
+				window.dialogHeight = ( parseInt( window.dialogHeight, 10 ) + iDiff ) + 'px' ;
 			else
 				window.resizeBy( 0, iDiff ) ;
Index: /FCKeditor/trunk/editor/filemanager/browser/default/browser.html
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/browser.html	(revision 75)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/browser.html	(revision 76)
@@ -71,5 +71,5 @@
 	if ( oErrorNode )
 	{
-		iErrorNumber = parseInt( oErrorNode.attributes.getNamedItem('number').value ) ;
+		iErrorNumber = parseInt( oErrorNode.attributes.getNamedItem('number').value, 10 ) ;
 		
 		switch ( iErrorNumber )
Index: /FCKeditor/trunk/fckeditor.js
===================================================================
--- /FCKeditor/trunk/fckeditor.js	(revision 75)
+++ /FCKeditor/trunk/fckeditor.js	(revision 76)
@@ -190,5 +190,5 @@
 
 	// Opera
-	if ( enableOpera && navigator.appName == 'Opera' && parseInt( navigator.appVersion ) >= 9 )
+	if ( enableOpera && navigator.appName == 'Opera' && parseInt( navigator.appVersion, 10 ) >= 9 )
 			return true ;
 
