]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetFoot.cpp
index 04fe39e482dbf8620f98f3ea8338f0e041a6d534..f5b3e4a8d78b545a15aa25a90bb2e78bacd7dc8a 100644 (file)
@@ -36,20 +36,20 @@ InsetFoot::InsetFoot(Buffer * 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);
 }