Show
Ignore:
Timestamp:
11/20/07 23:45:14 (1 year ago)
Author:
daboo
Message:

Merge of win32-merge branch.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/trunk/Sources_Common/Calendar_Store/Clients/CWebDAVCalendarClient.cpp

    r19 r143  
    130130        if (mBaseRURL.empty()) 
    131131                mBaseRURL = "/"; 
    132         else if (mBaseRURL[mBaseRURL.length() - 1] != '/') 
     132        else if (mBaseRURL[(cdstring::size_type)(mBaseRURL.length() - 1)] != '/') 
    133133                mBaseRURL += "/"; 
    134134         
    135135        // Must always start with / 
    136         if (mBaseRURL[0UL] != '/') 
     136        if (mBaseRURL[(cdstring::size_type)0] != '/') 
    137137        { 
    138138                cdstring temp(mBaseRURL); 
     
    16521652        if (directory) 
    16531653        { 
    1654                 if (rurl[rurl.length() - 1] != '/') 
     1654                if (rurl[(cdstring::size_type)(rurl.length() - 1)] != '/') 
    16551655                        rurl += "/"; 
    16561656        }