]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.C
* src/tabular.[Ch]: simplify plaintext methods, because there
[lyx.git] / src / buffer_funcs.C
index 4a05684b052f2730730f4767d0d66b3f3b192707..d1b0e76b56fe8f37e86083d04e1939e0f91197cb 100644 (file)
@@ -40,6 +40,7 @@
 #include "insets/insetbibitem.h"
 #include "insets/insetcaption.h"
 #include "insets/insetinclude.h"
+#include "insets/insettabular.h"
 
 #include "support/filetools.h"
 #include "support/fs_extras.h"
@@ -400,19 +401,23 @@ void setCaptions(Paragraph & par, LyXTextClass const & textclass)
        InsetList::iterator end = par.insetlist.end();
        for (; it != end; ++it) {
                InsetBase & inset = *it->inset;
-               if (inset.lyxCode() != InsetBase::FLOAT_CODE 
-                       && inset.lyxCode() != InsetBase::WRAP_CODE)
-                       continue;
-
-               docstring const & name = inset.getInsetName();
-               if (name.empty())
-                       continue;
-
-               Floating const & fl = textclass.floats().getType(to_ascii(name));
-               // FIXME UNICODE
-               string const & type = fl.type();
-               docstring const label = from_utf8(fl.name());
-               setCaptionLabels(inset, type, label, counters);
+               if (inset.lyxCode() == InsetBase::FLOAT_CODE 
+                       || inset.lyxCode() == InsetBase::WRAP_CODE) {
+                       docstring const & name = inset.getInsetName();
+                       if (name.empty())
+                               continue;
+
+                       Floating const & fl = textclass.floats().getType(to_ascii(name));
+                       // FIXME UNICODE
+                       string const & type = fl.type();
+                       docstring const label = from_utf8(fl.name());
+                       setCaptionLabels(inset, type, label, counters);
+               }
+               else if (inset.lyxCode() == InsetBase::TABULAR_CODE
+                       &&  static_cast<InsetTabular &>(inset).tabular.isLongTabular()) {
+                       // FIXME: are "table" and "Table" the correct type and label?
+                       setCaptionLabels(inset, "table", from_ascii("Table"), counters);
+               }
        }
 }