[Mobies-commit] [commit] r3619 - UDM/trunk/src/UIntWizVS/Templates/1033

ksmyth at redhat1.isis.vanderbilt.edu ksmyth at redhat1.isis.vanderbilt.edu
Fri Jan 28 15:54:51 CST 2011


Author: ksmyth
Date: Fri Jan 28 15:54:51 2011
New Revision: 3619

Log:
L"" is not a BSTR

Modified:
   UDM/trunk/src/UIntWizVS/Templates/1033/UdmConsole.h

Modified: UDM/trunk/src/UIntWizVS/Templates/1033/UdmConsole.h
==============================================================================
--- UDM/trunk/src/UIntWizVS/Templates/1033/UdmConsole.h	Fri Jan 28 15:54:00 2011	(r3618)
+++ UDM/trunk/src/UIntWizVS/Templates/1033/UdmConsole.h	Fri Jan 28 15:54:51 2011	(r3619)
@@ -28,7 +28,8 @@
 			if(S_OK != gmeoleapp->ConsoleClear())
 				throw udm_exception("Could not clear GME console.");
 				*/
-			gmeoleapp->put_ConsoleContents(L"");
+			CComBSTR empty(L"");
+			gmeoleapp->put_ConsoleContents(empty);
 		}
 
 		static void setContents(const std::string& contents)


More information about the Mobies-commit mailing list