diff layer/SpectrogramLayer.cpp @ 316:c0b9eec70639

* Make XmlExportable::toXml the function that is universally overridden (and pure virtual) instead of toXmlString. Tidies up some classes, notably the model classes, significantly. Closes #1794561.
author Chris Cannam
date Thu, 18 Oct 2007 10:15:07 +0000
parents cd2492c5fe45
children 984c1975f1ff
line wrap: on
line diff
--- a/layer/SpectrogramLayer.cpp	Wed Oct 17 12:58:45 2007 +0000
+++ b/layer/SpectrogramLayer.cpp	Thu Oct 18 10:15:07 2007 +0000
@@ -35,6 +35,7 @@
 #include <QApplication>
 #include <QMessageBox>
 #include <QMouseEvent>
+#include <QTextStream>
 
 #include <iostream>
 
@@ -3133,8 +3134,9 @@
 
 }
 
-QString
-SpectrogramLayer::toXmlString(QString indent, QString extraAttributes) const
+void
+SpectrogramLayer::toXml(QTextStream &stream,
+                        QString indent, QString extraAttributes) const
 {
     QString s;
     
@@ -3168,7 +3170,7 @@
 	.arg(m_normalizeColumns ? "true" : "false")
         .arg(m_normalizeVisibleArea ? "true" : "false");
 
-    return Layer::toXmlString(indent, extraAttributes + " " + s);
+    Layer::toXml(stream, indent, extraAttributes + " " + s);
 }
 
 void