Changeset 23286 in vbox
- Timestamp:
- Sep 24, 2009 3:01:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r23285 r23286 525 525 Utf8Str str; 526 526 const char *pszDisplay = RTEnvGet("DISPLAY"); 527 if (pszDisplay) 528 str.append(Utf8StrFmt("DISPLAY=%s\n", pszDisplay)); 527 str = Utf8StrFmt("DISPLAY=%s\n", pszDisplay); 529 528 const char *pszXAuth = RTEnvGet("XAUTHORITY"); 530 529 if (pszXAuth) 531 530 str.append(Utf8StrFmt("XAUTHORITY=%s\n", pszXAuth)); 532 env = Bstr(str);531 env = str; 533 532 #endif 534 533 ComPtr<IProgress> progress;
Note:
See TracChangeset
for help on using the changeset viewer.