]> git.lyx.org Git - lyx.git/blobdiff - src/xml.h
Fix yet another thinko in the math grid paste code
[lyx.git] / src / xml.h
index 45fb52f0cdaeb6bcacff7d286397df9511411ac8..b4339ba7ffaa9782aec8ff7270f6029a8f995e91 100644 (file)
--- a/src/xml.h
+++ b/src/xml.h
@@ -247,15 +247,12 @@ struct CompTag
 
 
 /// A special case of StartTag, used exclusively for tags that wrap paragraphs.
-/// parid is only used for HTML output; XML is supposed to use attr for this. TODO: REMOVE PARID.
+/// parid is only used for HTML output; XML is supposed to use attr for this.
 struct ParTag : public StartTag
 {
     ///
     explicit ParTag(std::string const & tag, const std::string & attr): StartTag(tag, from_utf8(attr)) {}
     ///
-    explicit ParTag(std::string const & tag, const std::string & attr, const std::string & parid):
-            StartTag(tag, from_utf8(attr + (parid.empty() ? (" id='" + parid + "'") : ""))) {}
-    ///
     ~ParTag() {}
 };