Index: /FCKeditor/branches/features/floating_dialog/editor/_source/commandclasses/fcktextcolorcommand.js
===================================================================
--- /FCKeditor/branches/features/floating_dialog/editor/_source/commandclasses/fcktextcolorcommand.js	(revision 1331)
+++ /FCKeditor/branches/features/floating_dialog/editor/_source/commandclasses/fcktextcolorcommand.js	(revision 1332)
@@ -108,5 +108,5 @@
 	command._Panel.Hide() ;
 	FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, 
-			FCKTools.BindSubject( command, command.SetColor ) ) ;
+			FCKTools.Bind( command, command.SetColor ) ) ;
 }
 
Index: /FCKeditor/branches/features/floating_dialog/editor/_source/internals/fcktools.js
===================================================================
--- /FCKeditor/branches/features/floating_dialog/editor/_source/internals/fcktools.js	(revision 1331)
+++ /FCKeditor/branches/features/floating_dialog/editor/_source/internals/fcktools.js	(revision 1332)
@@ -614,5 +614,5 @@
  * Utility function for binding the "this" reference to an object for a function.
  */
-FCKTools.BindSubject = function( subject, func )
+FCKTools.Bind = function( subject, func )
 {
   return function(){ return func.apply( subject, arguments ) ; } ;
Index: /FCKeditor/branches/features/floating_dialog/editor/fckdialog.html
===================================================================
--- /FCKeditor/branches/features/floating_dialog/editor/fckdialog.html	(revision 1331)
+++ /FCKeditor/branches/features/floating_dialog/editor/fckdialog.html	(revision 1332)
@@ -206,5 +206,5 @@
 	}
 
-	window.SetAutoSize = FCKTools.BindSubject( retval, retval.SetAutoSize ) ;
+	window.SetAutoSize = FCKTools.Bind( retval, retval.SetAutoSize ) ;
 	return retval ;
 }() ;
