Index: /trunk/include/iprt/cpp/ministring.h
===================================================================
--- /trunk/include/iprt/cpp/ministring.h	(revision 30872)
+++ /trunk/include/iprt/cpp/ministring.h	(revision 30873)
@@ -244,4 +244,40 @@
 
     /**
+     * Shortcut to append(), MiniString variant.
+     *
+     * @param that              The string to append.
+     *
+     * @returns Reference to the object.
+     */
+    MiniString &operator+=(const MiniString &that)
+    {
+        return append(that);
+    }
+
+    /**
+     * Shortcut to append(), const char* variant.
+     *
+     * @param pszThat           The C string to append.
+     *
+     * @returns                 Reference to the object.
+     */
+    MiniString &operator+=(const char *pszThat)
+    {
+        return append(pszThat);
+    }
+
+    /**
+     * Shortcut to append(), char variant.
+     *
+     * @param pszThat           The character to append.
+     *
+     * @returns                 Reference to the object.
+     */
+    MiniString &operator+=(char c)
+    {
+        return append(c);
+    }
+
+    /**
      * Index operator.
      *
