VirtualBox

Changeset 57944 in vbox for trunk/include/iprt/cpp


Ignore:
Timestamp:
Sep 29, 2015 3:07:09 PM (9 years ago)
Author:
vboxsync
Message:

iprt: More doxygen corrections.

Location:
trunk/include/iprt/cpp
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cpp/list.h

    r56291 r57944  
    208208     * This preallocates @a cCapacity elements within the list.
    209209     *
    210      * @param   cCapacitiy   The initial capacity the list has.
     210     * @param   cCapacity    The initial capacity the list has.
    211211     * @throws  std::bad_alloc
    212212     */
     
    924924     * This preallocates @a cCapacity elements within the list.
    925925     *
    926      * @param   cCapacitiy   The initial capacity the list has.
     926     * @param   cCapacity    The initial capacity the list has.
    927927     * @throws  std::bad_alloc
    928928     */
     
    955955     * This preallocates @a cCapacity elements within the list.
    956956     *
    957      * @param   cCapacitiy   The initial capacity the list has.
     957     * @param   cCapacity    The initial capacity the list has.
    958958     * @throws  std::bad_alloc
    959959     */
     
    983983     * This preallocates @a cCapacity elements within the list.
    984984     *
    985      * @param   cCapacitiy   The initial capacity the list has.
     985     * @param   cCapacity    The initial capacity the list has.
    986986     * @throws  std::bad_alloc
    987987     */
  • trunk/include/iprt/cpp/ministring.h

    r57005 r57944  
    428428     * Shortcut to append(), char variant.
    429429     *
    430      * @param pszThat           The character to append.
     430     * @param ch                The character to append.
    431431     *
    432432     * @returns                 Reference to the object.
    433433     */
    434     RTCString &operator+=(char c)
    435     {
    436         return append(c);
     434    RTCString &operator+=(char ch)
     435    {
     436        return append(ch);
    437437    }
    438438
     
    603603     * Compares the member string to another RTCString.
    604604     *
    605      * @param   pcszThat    The string to compare with.
     605     * @param   rThat       The string to compare with.
    606606     * @param   cs          Whether comparison should be case-sensitive.
    607607     * @returns 0 if equal, negative if this is smaller than @a pcsz, positive
    608608     *          if larger.
    609609     */
    610     int compare(const RTCString &that, CaseSensitivity cs = CaseSensitive) const
     610    int compare(const RTCString &rThat, CaseSensitivity cs = CaseSensitive) const
    611611    {
    612612        if (cs == CaseSensitive)
    613             return ::RTStrCmp(m_psz, that.m_psz);
    614         return ::RTStrICmp(m_psz, that.m_psz);
     613            return ::RTStrCmp(m_psz, rThat.m_psz);
     614        return ::RTStrICmp(m_psz, rThat.m_psz);
    615615    }
    616616
     
    619619     *
    620620     * @returns true if equal, false if not.
    621      * @param   that    The string to compare with.
    622      */
    623     bool equals(const RTCString &that) const
    624     {
    625         return that.length() == length()
    626             && memcmp(that.m_psz, m_psz, length()) == 0;
     621     * @param   rThat    The string to compare with.
     622     */
     623    bool equals(const RTCString &rThat) const
     624    {
     625        return rThat.length() == length()
     626            && memcmp(rThat.m_psz, m_psz, length()) == 0;
    627627    }
    628628
  • trunk/include/iprt/cpp/mtlist.h

    r56291 r57944  
    101101     * This preallocates @a cCapacity elements within the list.
    102102     *
    103      * @param   cCapacitiy   The initial capacity the list has.
     103     * @param   cCapacity    The initial capacity the list has.
    104104     * @throws  std::bad_alloc
    105105     */
     
    129129     * This preallocates @a cCapacity elements within the list.
    130130     *
    131      * @param   cCapacitiy   The initial capacity the list has.
     131     * @param   cCapacity    The initial capacity the list has.
    132132     * @throws  std::bad_alloc
    133133     */
     
    157157     * This preallocates @a cCapacity elements within the list.
    158158     *
    159      * @param   cCapacitiy   The initial capacity the list has.
     159     * @param   cCapacity    The initial capacity the list has.
    160160     * @throws  std::bad_alloc
    161161     */
  • trunk/include/iprt/cpp/xml.h

    r56291 r57944  
    601601     *                              simple path to any decendant.
    602602     * @param   pcszAttribute       The attribute name.
    603      * @param   pcszPathNamespace   The namespace to match @pcszPath with, NULL
     603     * @param   pcszPathNamespace   The namespace to match @a pcszPath with, NULL
    604604     *                              (default) match any namespace.  When using a
    605605     *                              path, this matches all elements along the way.
    606      * @param   pcszAttribNamespace The namespace prefix to apply to the attribute,
    607      *                              NULL (default) match any namespace.
     606     * @param   pcszAttributeNamespace  The namespace prefix to apply to the
     607     *                              attribute, NULL (default) match any namespace.
    608608     * @see     findChildElementP and findAttributeValue
    609609     */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette