Index: /CKEditor/trunk/_source/plugins/richcombo/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/richcombo/plugin.js	(revision 4516)
+++ /CKEditor/trunk/_source/plugins/richcombo/plugin.js	(revision 4517)
@@ -278,5 +278,5 @@
 		},
 
-		setValue : function( value, emptyLabel )
+		setValue : function( value, text )
 		{
 			this._.value = value;
@@ -284,13 +284,12 @@
 			var textElement = this.document.getById( 'cke_' + this.id + '_text' );
 
-			if ( !value )
-			{
-				value = emptyLabel || this.label;
+			if ( !( value || text ) )
+			{
+				text = this.label;
 				textElement.addClass( 'cke_inline_label' );
 			}
 			else
 				textElement.removeClass( 'cke_inline_label' );
-
-			textElement.setHtml( value );
+			textElement.setHtml( typeof text != 'undefined' ? text : value );
 		},
 
