]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetFoot.cpp
index d1e0097c420634a548f95bdc945b22034c3878c2..f5b3e4a8d78b545a15aa25a90bb2e78bacd7dc8a 100644 (file)
@@ -31,25 +31,25 @@ using namespace std;
 
 namespace lyx {
 
-InsetFoot::InsetFoot(Buffer const & buf)
+InsetFoot::InsetFoot(Buffer * buf)
        : InsetFootlike(buf)
 {}
 
 
-void InsetFoot::updateLabels(ParIterator const & it)
+void InsetFoot::updateLabels(ParIterator const & it, bool out)
 {
        BufferParams const & bp = buffer().masterBuffer()->params();
        Counters & cnts = bp.documentClass().counters();
-       static docstring const foot = from_ascii("footnote");
        Paragraph const & outer = it.paragraph();
-       if (!outer.layout().intitle && cnts.hasCounter(foot)) {
-               cnts.step(foot);
-               custom_label_= translateIfPossible(getLayout().labelstring()) 
-                       + ' ' + cnts.theCounter(foot, outer.getParLanguage(bp)->code());
-               setLabel(custom_label_);
-       
+       InsetLayout const & il = getLayout();
+       docstring const & count = il.counter();
+       if (!outer.layout().intitle && cnts.hasCounter(count)) {
+               cnts.step(count);
+               custom_label_= translateIfPossible(il.labelstring()) 
+                       + ' ' + cnts.theCounter(count, outer.getParLanguage(bp)->code());
+               setLabel(custom_label_);        
        }
-       InsetCollapsable::updateLabels(it);
+       InsetCollapsable::updateLabels(it, out);
 }