]> git.lyx.org Git - features.git/commitdiff
fix formatting
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 19 Dec 2006 18:04:42 +0000 (18:04 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 19 Dec 2006 18:04:42 +0000 (18:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16340 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insetcaption.C

index ff747d69540b6a7c9e9e4bee3d0c63b59b873c00..55566f8dae364097cbb91b827ec5701f86666c74 100644 (file)
@@ -96,15 +96,15 @@ void InsetCaption::setLabel(LCursor & cur) const
        if (cur.top().text() == &text_) {
                string s;
                size_t i = cur.depth();
-                       while (i > 0) {
-                               --i;
-                               InsetBase * const in = &cur[i].inset();
-                               if (in->lyxCode() == InsetBase::FLOAT_CODE
-                                   || in->lyxCode() == InsetBase::WRAP_CODE) {
-                                       s = to_utf8(in->getInsetName());
-                                       break;
-                               }
+               while (i > 0) {
+                       --i;
+                       InsetBase * const in = &cur[i].inset();
+                       if (in->lyxCode() == InsetBase::FLOAT_CODE ||
+                           in->lyxCode() == InsetBase::WRAP_CODE) {
+                               s = to_utf8(in->getInsetName());
+                               break;
                        }
+               }
                Floating const & fl = textclass_.floats().getType(s);
                s = fl.name();
                docstring num;