X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.h;h=662fa224d7d74e69f762fcf53f88bffebb252476;hb=4ed0312c51704780af1c452d3a82a84171b3725a;hp=b31602c3c03487c640a3e8f7b8a31b56532248a0;hpb=122b452b20b96cb9608af85f7d71ab7977764c10;p=lyx.git diff --git a/src/Bullet.h b/src/Bullet.h index b31602c3c0..662fa224d7 100644 --- a/src/Bullet.h +++ b/src/Bullet.h @@ -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; };