Joins together the members of the list separated by sep.
Definition at line 50 of file qstringlist.h. 00051 { 00052 bool first=true; 00053 FXString ret; 00054 for(const_iterator it=begin(); it!=end(); ++it) 00055 { 00056 if(!first) ret+=sep; 00057 ret+=*it; 00058 first=false; 00059 } 00060 return ret; 00061 }
|