]> git.lyx.org Git - features.git/commitdiff
Remove last traces of the ShareContainer
authorLars Gullik Bjønnes <larsbj@gullik.org>
Sun, 9 Apr 2006 00:19:34 +0000 (00:19 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Sun, 9 Apr 2006 00:19:34 +0000 (00:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13604 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph_pimpl.h

index 488e7e4deddcc0ab7f0a50ccecf936f06d7628ca..fb441809ab7762b6da994bec9b76eba19979cda2 100644 (file)
@@ -98,24 +98,15 @@ public:
                ///
                FontTable(lyx::pos_type p, LyXFont const & f)
                        : pos_(p), font_(f)
-               {
-#if 0
-                       font_ = container.get(f);
-#endif
-               }
+               {}
                ///
                lyx::pos_type pos() const { return pos_; }
                ///
                void pos(lyx::pos_type p) { pos_ = p; }
                ///
                LyXFont const & font() const { return font_; }
-#if 0
-               ///
-               void font(LyXFont const & f) { font_ = container.get(f);}
-#else
                ///
                void font(LyXFont const & f) { font_ = f;}
-#endif
        private:
                /// End position of paragraph this font attribute covers
                lyx::pos_type pos_;
@@ -128,13 +119,7 @@ public:
                    The values LyXFont::IGNORE_* and LyXFont::TOGGLE are NOT
                    allowed in these font tables.
                */
-#if 0
-               boost::shared_ptr<LyXFont> font_;
-               ///
-               static ShareContainer<LyXFont> container;
-#else
                LyXFont font_;
-#endif
        };
        ///
        friend class matchFT;