]> git.lyx.org Git - lyx.git/blobdiff - src/Bullet.h
Fix bug #12772
[lyx.git] / src / Bullet.h
index b31602c3c03487c640a3e8f7b8a31b56532248a0..662fa224d7d74e69f762fcf53f88bffebb252476 100644 (file)
@@ -45,10 +45,10 @@ public:
        int getSize() const;
        ///
        FontSize getFontSize() const;
-       ///
+       /// The text to be output
        docstring const & getText() const;
-       ///
-       docstring const & getUnicode() const;
+       /// The label displayed in the workarea
+       docstring const & getLabel() const;
        ///
        Bullet & operator=(Bullet const &);
        ///
@@ -81,13 +81,11 @@ private:
        ///
        void generateText() const;
        ///
-       void generateUnicode() const;
-       ///
        static docstring const bulletSize(int);
        ///
        static FontSize bulletFontSize(int);
        ///
-       static docstring const bulletUnicode(int, int);
+       static docstring const bulletLabel(int, int);
 
        ///
        int font;
@@ -113,7 +111,7 @@ private:
            and size settings.
        */
        mutable docstring text;
-       mutable docstring unicode;
+       mutable docstring label;
 };