Index: /trunk/src/VBox/Main/include/ConsoleImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/ConsoleImpl.h	(revision 61929)
+++ /trunk/src/VBox/Main/include/ConsoleImpl.h	(revision 61930)
@@ -736,7 +736,7 @@
                                                             const char *pszErrorFmt, va_list va);
 
-    void                        i_setVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);
-    static DECLCALLBACK(void)   i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,
-                                                            const char *pszErrorId, const char *pszFormat, va_list va);
+    void                        i_atVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);
+    static DECLCALLBACK(void)   i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,
+                                                           const char *pszErrorId, const char *pszFormat, va_list va);
 
     HRESULT                     i_captureUSBDevices(PUVM pUVM);
Index: /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 61929)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 61930)
@@ -8030,6 +8030,5 @@
         rc = rc2;
         if (online)
-            i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
-                                         N_("Broken shared folder!"));
+            i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", N_("Broken shared folder!"));
     }
 
@@ -9237,5 +9236,6 @@
 
 /**
- * VM runtime error callback function.
+ * VM runtime error callback function (FNVMATRUNTIMEERROR).
+ *
  * See VMSetRuntimeError for the detailed description of parameters.
  *
@@ -9250,7 +9250,6 @@
  */
 /* static */ DECLCALLBACK(void)
-Console::i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags,
-                                     const char *pszErrorId,
-                                     const char *pszFormat, va_list va)
+Console::i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags,
+                                    const char *pszErrorId, const char *pszFormat, va_list va)
 {
     bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL);
@@ -9679,5 +9678,5 @@
                         {
                             ErrorInfoKeeper eik;
-                            pConsole->i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
+                            pConsole->i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
                                    N_("The shared folder '%s' could not be set up: %ls.\n"
                                       "The shared folder setup will not be complete. It is recommended to power down the virtual "
Index: /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp	(revision 61929)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp	(revision 61930)
@@ -3313,5 +3313,5 @@
      * Register VM runtime error handler.
      */
-    rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_setVMRuntimeErrorCallback, this);
+    rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_atVMRuntimeErrorCallback, this);
     AssertRC(rc2);
     if (RT_SUCCESS(rc))
@@ -3707,9 +3707,9 @@
  * Ellipsis to va_list wrapper for calling setVMRuntimeErrorCallback.
  */
-void Console::i_setVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
+void Console::i_atVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
 {
     va_list va;
     va_start(va, pszFormat);
-    i_setVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va);
+    i_atVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va);
     va_end(va);
 }
@@ -3985,5 +3985,5 @@
                     const char *pszUnit;
                     uint64_t u64Print = formatDiskSize((uint64_t)i64Size, &pszUnit);
-                    i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
+                    i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
                             N_("The medium '%ls' has a logical size of %RU64%s "
                             "but the file system the medium is located on seems "
@@ -4016,5 +4016,5 @@
                             uint64_t u64PrintSiz = formatDiskSize((LONG64)i64Size, &pszUnitSiz);
                             uint64_t u64PrintMax = formatDiskSize(maxSize, &pszUnitMax);
-                            i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */
+                            i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */
                                     N_("The medium '%ls' has a logical size of %RU64%s "
                                     "but the file system the medium is located on can "
@@ -4039,5 +4039,5 @@
                     const char *pszUnit;
                     uint64_t u64Print = formatDiskSize(i64Size, &pszUnit);
-                    i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
+                    i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
 #ifdef RT_OS_WINDOWS
                             N_("The snapshot folder of this VM '%ls' seems to be located on "
@@ -4080,5 +4080,5 @@
                         || enmFsTypeFile == RTFSTYPE_XFS)
                     {
-                        i_setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
+                        i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
                                 N_("The host I/O cache for at least one controller is disabled "
                                    "and the medium '%ls' for this VM "
@@ -4097,5 +4097,5 @@
                              && !mfSnapshotFolderExt4WarningShown)
                     {
-                        i_setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
+                        i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
                                 N_("The host I/O cache for at least one controller is disabled "
                                    "and the snapshot folder for this VM "
@@ -4331,9 +4331,9 @@
                     Bstr loc;
                     hrc = pMedium->COMGETTER(Location)(loc.asOutParam());                   H();
-                    i_setVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",
-                                                 "The image file '%ls' is inaccessible and is being ignored. "
-                                                 "Please select a different image file for the virtual %s drive.",
-                                                 loc.raw(),
-                                                 enmType == DeviceType_DVD ? "DVD" : "floppy");
+                    i_atVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",
+                                                "The image file '%ls' is inaccessible and is being ignored. "
+                                                "Please select a different image file for the virtual %s drive.",
+                                                loc.raw(),
+                                                enmType == DeviceType_DVD ? "DVD" : "floppy");
                     pMedium = NULL;
                 }
@@ -5111,5 +5111,5 @@
                         if (ioctl(iSock, SIOCGIFFLAGS, &Req) >= 0)
                             if ((Req.ifr_flags & IFF_UP) == 0)
-                                i_setVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown",
+                                i_atVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown",
                                      N_("Bridged interface %s is down. Guest will not be able to use this interface"),
                                      pszBridgedIfName);
