Index: /trunk/include/VBox/com/string.h
===================================================================
--- /trunk/include/VBox/com/string.h	(revision 33674)
+++ /trunk/include/VBox/com/string.h	(revision 33675)
@@ -525,26 +525,4 @@
 
     /**
-     * Attempts to convert the member string into a 32-bit integer.
-     *
-     * @returns 32-bit unsigned number on success.
-     * @returns 0 on failure.
-     */
-    int toInt32() const
-    {
-        return RTStrToInt32(m_psz);
-    }
-
-    /**
-     * Attempts to convert the member string into an unsigned 32-bit integer.
-     *
-     * @returns 32-bit unsigned number on success.
-     * @returns 0 on failure.
-     */
-    int toUInt32() const
-    {
-        return RTStrToUInt32(m_psz);
-    }
-
-    /**
      *  Static immutable empty-string object. May be used for comparison purposes.
      */
Index: /trunk/include/iprt/cpp/ministring.h
===================================================================
--- /trunk/include/iprt/cpp/ministring.h	(revision 33674)
+++ /trunk/include/iprt/cpp/ministring.h	(revision 33675)
@@ -649,4 +649,26 @@
 
     /**
+     * Attempts to convert the member string into a 32-bit integer.
+     *
+     * @returns 32-bit unsigned number on success.
+     * @returns 0 on failure.
+     */
+    int toInt32() const
+    {
+        return RTStrToInt32(m_psz);
+    }
+
+    /**
+     * Attempts to convert the member string into an unsigned 32-bit integer.
+     *
+     * @returns 32-bit unsigned number on success.
+     * @returns 0 on failure.
+     */
+    int toUInt32() const
+    {
+        return RTStrToUInt32(m_psz);
+    }
+
+    /**
      * Attempts to convert the member string into an 64-bit integer.
      *
