Changeset 51764 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 30, 2014 12:14:09 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r51754 r51764 4142 4142 PCFGMNODE pCfgPlugin = NULL; 4143 4143 Utf8Str strPlugin; 4144 hrc = mptrExtPackManager->i_getLibraryPathForExtPack(s_pszVDPlugin, &strExtPackPuel, &strPlugin); H(); 4145 4146 InsertConfigNode(pCfg, "Plugins", &pCfgPlugins); 4147 InsertConfigNode(pCfgPlugins, s_pszVDPlugin, &pCfgPlugin); 4148 InsertConfigString(pCfgPlugin, "Path", strPlugin.c_str()); 4144 hrc = mptrExtPackManager->i_getLibraryPathForExtPack(s_pszVDPlugin, &strExtPackPuel, &strPlugin); 4145 // Don't fail, this is optional! 4146 if (SUCCEEDED(hrc)) 4147 { 4148 InsertConfigNode(pCfg, "Plugins", &pCfgPlugins); 4149 InsertConfigNode(pCfgPlugins, s_pszVDPlugin, &pCfgPlugin); 4150 InsertConfigString(pCfgPlugin, "Path", strPlugin.c_str()); 4151 } 4149 4152 } 4150 4153 # endif
Note:
See TracChangeset
for help on using the changeset viewer.