Mercurial > hg > easaier-soundaccess
changeset 49:81e058c2be51
missing toXml function
author | lbajardsilogic |
---|---|
date | Wed, 16 May 2007 11:30:26 +0000 |
parents | a8dcc1ca82c4 |
children | 51b1cbf1a7d7 |
files | data/model/TextModel.h |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/data/model/TextModel.h Wed May 16 11:29:48 2007 +0000 +++ b/data/model/TextModel.h Wed May 16 11:30:26 2007 +0000 @@ -89,6 +89,16 @@ QString("%1 subtype=\"text\"") .arg(extraAttributes)); } + + virtual void toXml(QTextStream &out, + QString indent = "", + QString extraAttributes = "") const + { + SparseModel<TextPoint>::toXml + (out, + indent, + QString("%1 subtype=\"text\"").arg(extraAttributes)); + } };