VirtualBox

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


Ignore:
Timestamp:
Oct 12, 2010 3:02:53 PM (14 years ago)
Author:
vboxsync
Message:

Main: partly reverted r66582

File:
1 edited

Legend:

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

    r33055 r33073  
    284284     * @returns Reference to the object.
    285285     */
    286     MiniString &upper()
     286    MiniString &toUpper()
    287287    {
    288288        if (length())
     
    296296     * @returns Reference to the object.
    297297     */
    298     MiniString &lower()
     298    MiniString& toLower()
    299299    {
    300300        if (length())
     
    511511     */
    512512    bool contains(const iprt::MiniString &that, CaseSensitivity cs = CaseSensitive) const;
    513 
    514     /**
    515      * Returns a upper case copy of this string.
    516      *
    517      * @returns the upper case string copy.
    518      */
    519     MiniString toUpper() const
    520     {
    521         return MiniString(*this).upper();
    522     }
    523 
    524     /**
    525      * Returns a lower case copy of this string.
    526      *
    527      * @returns the lower case string copy.
    528      */
    529     MiniString toLower() const
    530     {
    531         return MiniString(*this).lower();
    532     }
    533513
    534514    /**
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