- Timestamp:
- Aug 26, 2010 8:21:59 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r31798 r31974 886 886 if (fVNCEnable) 887 887 { 888 Bstr name;889 machine->COMGETTER(Name)( name.asOutParam());888 Bstr machineName; 889 machine->COMGETTER(Name)(machineName.asOutParam()); 890 890 g_pFramebufferVNC = new VNCFB(console, uVNCPort, pszVNCPassword); 891 rc = g_pFramebufferVNC->init( name ? Utf8Str(name).raw() : "");891 rc = g_pFramebufferVNC->init(machineName ? Utf8Str(machineName).c_str() : ""); 892 892 if (rc != S_OK) 893 893 {
Note:
See TracChangeset
for help on using the changeset viewer.