X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.C;h=4104ee60f49fd8cfddf21c8d854ed2a7c3933b3f;hb=056550b31135c3812825c86719c4ceb7054910b5;hp=460791a71a6cd3b81851d06f633531d31b25110a;hpb=b27bb5cb53edeee088cf408eb37dd7d72586b90d;p=lyx.git diff --git a/src/Bullet.C b/src/Bullet.C index 460791a71a..4104ee60f4 100644 --- a/src/Bullet.C +++ b/src/Bullet.C @@ -20,7 +20,7 @@ #include -using lyx::docstring; +namespace lyx { using std::string; @@ -207,7 +207,7 @@ docstring const Bullet::bulletSize(int s) "\\large", "\\Large", "\\LARGE", "\\huge", "\\Huge" }; - return lyx::from_ascii(BulletSize[s]); + return from_ascii(BulletSize[s]); } @@ -352,7 +352,7 @@ docstring const Bullet::bulletEntry(int f, int c) BulletPanel4, BulletPanel5 }; - return lyx::from_ascii(BulletPanels[f][c]); + return from_ascii(BulletPanels[f][c]); } void Bullet::testInvariant() const @@ -380,3 +380,6 @@ void Bullet::testInvariant() const // } #endif } + + +} // namespace lyx