svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=736694
m_lessons.clear();
m_tenseDescriptions.clear();
m_identifiers.clear();
+ m_wordTypes.clear();
m_extraSizeHints.clear();
m_sizeHints.clear();
m_vocabulary.clear();
m_version = "";
m_generator = "";
m_csvDelimiter = QString( '\t' );
+ m_usages.clear();
+ m_license.clear();
+ m_category.clear();
}
}
}
+void KEduVocWordType::clear()
+{
+ d->m_wordTypeList.clear();
+}
+
QString specialTypeAdjective() const;
QString specialTypeAdverb() const;
+ void clear();
+
private:
}
}
-
+ KEduVocDocument *doc = new KEduVocDocument();
for ( int i = 0; i < this->m_fileList.size(); ++i ) {
- KEduVocDocument *doc = new KEduVocDocument();
// open the file
doc->open( KUrl::fromPath( this->m_fileList[i] ) );
// add it's comment to the comment list
this->m_commentList.append( doc->documentComment() );
- delete doc;
}
+ delete doc;
}
void SharedKvtmlFiles::rescan()