Changeset 93485 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jan 29, 2022 12:32:20 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149604
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInFreeBsd.cpp
r93470 r93485 218 218 * @param pThis The instance data. 219 219 * @param pUVM The user mode VM handle. 220 * @param pVMM The VMM function table. 220 221 * @param pszName The image name. 221 222 * @param uKernelStart The kernel start address. -
trunk/src/VBox/Debugger/DBGPlugInSolaris.cpp
r93470 r93485 443 443 * 444 444 * @param pUVM The user mode VM handle. 445 * @param pVMM The VMM function table. 445 446 * @param pThis Our instance data. 446 447 * @param pModCtl Pointer to the modctl structure. … … 595 596 * 596 597 * @param pUVM The user mode VM handle. 598 * @param pVMM The VMM function table. 597 599 * @param pThis Our instance data. 598 600 * @param pModCtl Pointer to the modctl structure. -
trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp
r93468 r93485 585 585 * @param a_pVMM The VMM function table. 586 586 */ 587 VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM);587 VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM); 588 588 589 589 /** Destructor */ … … 2684 2684 2685 2685 2686 VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM)2687 : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM( pVMM)2686 VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM) 2687 : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM(a_pVMM) 2688 2688 { 2689 2689 /*
Note:
See TracChangeset
for help on using the changeset viewer.