Changeset 107930 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 24, 2025 9:43:35 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167165
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r107799 r107930 2279 2279 break; 2280 2280 case AudioDriverType_WinMM: 2281 /* Deprecated; not (ever) supported; leave this in for backwards compatibility. See @bugref{10845} */ 2281 2282 if (details == VMINFO_MACHINEREADABLE) 2282 2283 pszDrv = "winmm"; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r107883 r107930 1067 1067 case AudioDriverType_ALSA: psz = "ALSA"; break; 1068 1068 case AudioDriverType_Pulse: psz = "PulseAudio"; break; 1069 /* Deprecated; not (ever) supported; leave this in for backwards compatibility. See @bugref{10845} */ 1069 1070 case AudioDriverType_WinMM: psz = "WinMM"; break; 1070 1071 case AudioDriverType_DirectSound: psz = "DirectSound"; break; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r107831 r107930 2767 2767 CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_Default)); 2768 2768 #ifdef RT_OS_WINDOWS 2769 # ifdef VBOX_WITH_WINMM2770 else if (!RTStrICmp(ValueUnion.psz, "winmm"))2771 CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_WinMM));2772 # endif2773 2769 else if (!RTStrICmp(ValueUnion.psz, "dsound")) 2774 2770 CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_DirectSound)); -
trunk/src/VBox/Frontends/VirtualBox/src/converter/UIConverterBackendCOM.cpp
r107267 r107930 550 550 case KAudioDriverType_ALSA: return QApplication::translate("UICommon", "ALSA Audio", "AudioDriverType"); 551 551 case KAudioDriverType_Pulse: return QApplication::translate("UICommon", "PulseAudio", "AudioDriverType"); 552 /* Deprecated; not (ever) supported; leave this in for backwards compatibility. See @bugref{10845} */ 552 553 case KAudioDriverType_WinMM: return QApplication::translate("UICommon", "Windows Multimedia", "AudioDriverType"); 553 554 case KAudioDriverType_DirectSound: return QApplication::translate("UICommon", "Windows DirectSound", "AudioDriverType"); … … 570 571 list.insert(QApplication::translate("UICommon", "ALSA Audio", "AudioDriverType"), KAudioDriverType_ALSA); 571 572 list.insert(QApplication::translate("UICommon", "PulseAudio", "AudioDriverType"), KAudioDriverType_Pulse); 573 /* Deprecated; not (ever) supported; leave this in for backwards compatibility. See @bugref{10845} */ 572 574 list.insert(QApplication::translate("UICommon", "Windows Multimedia", "AudioDriverType"), KAudioDriverType_WinMM); 573 575 list.insert(QApplication::translate("UICommon", "Windows DirectSound", "AudioDriverType"), KAudioDriverType_DirectSound);
Note:
See TracChangeset
for help on using the changeset viewer.