Index: /FCKeditor/branches/features/generic_plugin/editor/_source/internals/fckdocumentprocessor.js
===================================================================
--- /FCKeditor/branches/features/generic_plugin/editor/_source/internals/fckdocumentprocessor.js	(revision 1743)
+++ /FCKeditor/branches/features/generic_plugin/editor/_source/internals/fckdocumentprocessor.js	(revision 1744)
@@ -125,12 +125,4 @@
 FCKEmbedAndObjectProcessor = (function()
 {
-	var defaultObjectRefresh = function( placeHolder, original )
-	{
-		if ( original.getAttribute( 'width' ) > 0 )
-			placeHolder.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ;
-
-		if ( original.getAttribute( 'height' ) > 0 )
-			placeHolder.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ;
-	}
 
 	var customProcessors = [] ;
@@ -140,5 +132,5 @@
 		var clone = el.cloneNode( true ) ;
 		var fakeImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__UnknownObject', clone ) ;
-		defaultObjectRefresh( fakeImg, el ) ;
+		FCKEmbedAndObjectProcessor.RefreshView( fakeImg, el ) ;
 
 		for ( var i = 0 ; i < customProcessors.length ; i++ )
@@ -177,8 +169,10 @@
 				RefreshView : function( placeHolder, original )
 				{
-					defaultObjectRefresh( placeHolder, original ) ;
+					if ( original.getAttribute( 'width' ) > 0 )
+						placeHolder.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ;
+
+					if ( original.getAttribute( 'height' ) > 0 )
+						placeHolder.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ;
 				},
-
-				DefaultObjectRefresh : defaultObjectRefresh,
 
 				AddCustomHandler : function( func )
Index: /FCKeditor/branches/features/generic_plugin/editor/dialog/fck_flash/fck_flash.js
===================================================================
--- /FCKeditor/branches/features/generic_plugin/editor/dialog/fck_flash/fck_flash.js	(revision 1743)
+++ /FCKeditor/branches/features/generic_plugin/editor/dialog/fck_flash/fck_flash.js	(revision 1744)
@@ -142,5 +142,5 @@
 	}
 
-	oEditor.FCKEmbedAndObjectProcessor.DefaultObjectRefresh( oFakeImage, oEmbed ) ;
+	oEditor.FCKEmbedAndObjectProcessor.RefreshView( oFakeImage, oEmbed ) ;
 
 	return true ;
