Index: filters.hxx =================================================================== --- kmailcvt/filters.hxx (revision 427509) +++ kmailcvt/filters.hxx (working copy) @@ -86,7 +86,58 @@ QString m_info; }; +/** Glorified QString[N] for (a) understandability (b) older gcc +* compatibility, see for instance +* http://mail.kde.org/pipermail/kmail-devel/2005-April/017690.html +*/ +template class FolderStructureBase +{ +public: + typedef QString NString[size]; + /** Constructor. Need a default constructor for QValueList. */ + FolderStructureBase() {} ; + /** Constructor. Turn N QStrings into a folder structure + * description. + */ + FolderStructureBase(const NString &s) + { + for(unsigned int i=0; i