Index: /trunk/include/VBox/dbg.h
===================================================================
--- /trunk/include/VBox/dbg.h	(revision 65117)
+++ /trunk/include/VBox/dbg.h	(revision 65118)
@@ -414,5 +414,6 @@
      * @returns VBox status.
      * @param   pCmdHlp     Pointer to the command callback structure.
-     * @param   pcb         Where to store the number of bytes written.
+     * @param   pcbWritten  Where to store the number of bytes written.
+     *                      This is optional.
      * @param   pszFormat   The format string.  This may use all IPRT extensions as
      *                      well as the debugger ones.
@@ -427,5 +428,6 @@
      * @returns VBox status.
      * @param   pCmdHlp     Pointer to the command callback structure.
-     * @param   pcb         Where to store the number of bytes written.
+     * @param   pcbWritten  Where to store the number of bytes written.
+     *                      This is optional. 
      * @param   pszFormat   The format string.  This may use all IPRT extensions as
      *                      well as the debugger ones.
@@ -480,5 +482,4 @@
      * @param   pCmdHlp     Pointer to the command callback structure.
      * @param   rc          The VBox status code.
-     * @param   pcb         Where to store the number of bytes written.
      * @param   pszFormat   Format string for additional messages. Can be NULL.
      * @param   args        Format arguments, optional.
Index: /trunk/src/VBox/Debugger/DBGCCmdHlp.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCCmdHlp.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGCCmdHlp.cpp	(revision 65118)
@@ -255,5 +255,5 @@
 
 /**
- * @interface_method_impl{DBGCCMDHLP,pfnStrPrintf}
+ * @interface_method_impl{DBGCCMDHLP,pfnStrPrintfV}
  */
 static DECLCALLBACK(size_t) dbgcHlpStrPrintfV(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf,
@@ -699,5 +699,5 @@
 
 /**
- * @interface_method_impl{DBGCCMDHLP,pfnFailV}
+ * @interface_method_impl{DBGCCMDHLP,pfnFailRcV}
  */
 static DECLCALLBACK(int) dbgcHlpFailRcV(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, const char *pszFormat, va_list va)
@@ -936,9 +936,9 @@
  * @interface_method_impl{DBGCCMDHLP,pfnVarConvert}
  */
-static DECLCALLBACK(int) dbgcHlpVarConvert(PDBGCCMDHLP pCmdHlp, PCDBGCVAR pInVar, DBGCVARTYPE enmToType, bool fConvSyms,
+static DECLCALLBACK(int) dbgcHlpVarConvert(PDBGCCMDHLP pCmdHlp, PCDBGCVAR pVar, DBGCVARTYPE enmToType, bool fConvSyms,
                                            PDBGCVAR pResult)
 {
     PDBGC           pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);
-    DBGCVAR const   InVar = *pInVar;    /* if pInVar == pResult  */
+    DBGCVAR const   InVar = *pVar;      /* if pVar == pResult  */
     PCDBGCVAR       pArg = &InVar;      /* lazy bird, clean up later */
     DBGFADDRESS     Address;
Index: /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 65118)
@@ -1626,5 +1626,5 @@
  *
  * @returns nothing.
- * @param   pDumpBb             The basic block dump state to dump.
+ * @param   pDumpBranchTbl      The basic block dump state to dump.
  * @param   hScreen             The screen to draw to.
  */
@@ -2621,6 +2621,5 @@
 
 /**
- * @callback_method_impl{FNDBGCCMD,
- *      The 'p', 'pc', 'pt', 't', 'tc', and 'tt' commands.}
+ * @callback_method_impl{FNDBGCCMD, The 'p'\, 'pc'\, 'pt'\, 't'\, 'tc'\, and 'tt' commands.}
  */
 static DECLCALLBACK(int) dbgcCmdStepTrace(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs)
@@ -4717,4 +4716,5 @@
  * @retval  VINF_SUCCESS on success.
  *
+ * @param   pCmdHlp The command helper callback table.
  * @param   pvBuf   The buffer to convert into.
  * @param   pcbBuf  The buffer size on input. The size of the result on output.
Index: /trunk/src/VBox/Debugger/DBGCEval.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCEval.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGCEval.cpp	(revision 65118)
@@ -573,4 +573,5 @@
  * @param   pDbgc       Debugger console instance data.
  * @param   pszExpr     The expression string.
+ * @param   cchExpr     The size of the expression string.
  * @param   enmCategory The target category for the result.
  * @param   pResult     Where to store the result of the expression evaluation.
@@ -1043,5 +1044,5 @@
  * @param   paVarDescs      See DBGCCMD::paVarDescs and DBGCFUNC::paVarDescs.
  * @param   cVarDescs       See DBGCCMD::cVarDescs and DBGCFUNC::cVarDescs.
- * @param   pszArg          Pointer to the arguments to parse.
+ * @param   pszArgs         Pointer to the arguments to parse.
  * @param   piArg           Where to return the index of the first argument in
  *                          DBGC::aArgs. Always set. Caller must restore DBGC::iArg
Index: /trunk/src/VBox/Debugger/DBGCScreenAscii.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCScreenAscii.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGCScreenAscii.cpp	(revision 65118)
@@ -236,5 +236,5 @@
  *
  * @returns VBox status code.
- * @param   pScreen             The screen to blit.
+ * @param   hScreen             The screen to blit.
  * @param   pfnBlit             Blitting callback.
  * @param   pvUser              Opaque user data to pass to the dumper callback.
Index: /trunk/src/VBox/Debugger/DBGCTcp.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCTcp.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGCTcp.cpp	(revision 65118)
@@ -169,9 +169,9 @@
 
 /** @copydoc FNDBGCBACKSETREADY */
-static DECLCALLBACK(void) dbgcTcpBackSetReady(PDBGCBACK pBack, bool fBusy)
+static DECLCALLBACK(void) dbgcTcpBackSetReady(PDBGCBACK pBack, bool fReady)
 {
     /* stub */
     NOREF(pBack);
-    NOREF(fBusy);
+    NOREF(fReady);
 }
 
Index: /trunk/src/VBox/Debugger/DBGPlugInLinux.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGPlugInLinux.cpp	(revision 65117)
+++ /trunk/src/VBox/Debugger/DBGPlugInLinux.cpp	(revision 65118)
@@ -2092,6 +2092,4 @@
  * @param   pszCfg              The config data.
  * @param   ppszCfgNext         Where to store the pointer to the data following the identifier.
- * @param   pcbCfg              Where the initial size of the string is stored.
- *                              Contains the remaining string length on return.
  * @param   ppCfgItem           Where to store the created config item on success.
  */
@@ -2175,5 +2173,5 @@
  * @returns VBox status code
  * @param   pThis               The Linux digger data.
- * @param   pbCfg               The config string.
+ * @param   pszCfg              The config string.
  */
 static int dbgDiggerLinuxCfgParse(PDBGDIGGERLINUX pThis, const char *pszCfg)
Index: /trunk/src/VBox/Debugger/VBoxDbgBase.h
===================================================================
--- /trunk/src/VBox/Debugger/VBoxDbgBase.h	(revision 65117)
+++ /trunk/src/VBox/Debugger/VBoxDbgBase.h	(revision 65118)
@@ -44,5 +44,5 @@
      * Construct the object.
      *
-     * @param   pDbgGui     Pointer to the debugger gui object.
+     * @param   a_pDbgGui   Pointer to the debugger gui object.
      */
     VBoxDbgBase(VBoxDbgGui *a_pDbgGui);
@@ -130,5 +130,6 @@
      * Construct the object.
      *
-     * @param   pDbgGui     Pointer to the debugger gui object.
+     * @param   a_pDbgGui   Pointer to the debugger gui object.
+     * @param   a_pParent   Pointer to the parent object.
      */
     VBoxDbgBaseWindow(VBoxDbgGui *a_pDbgGui, QWidget *a_pParent);
