X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.C;h=91965f9706ba176b2dcf5fceed6f2509a7aa655a;hb=6c2e78e12855d8661eb289ded3dc8722748863b8;hp=b8416577747109e02a1a1f3d7f96b29d99aa07c7;hpb=fcdb71906b6f41dd5719608b1e57286037fc5f2c;p=lyx.git diff --git a/src/Bullet.C b/src/Bullet.C index b841657774..91965f9706 100644 --- a/src/Bullet.C +++ b/src/Bullet.C @@ -20,6 +20,8 @@ #include +using std::string; + /** The four LaTeX itemize environment default bullets */ @@ -35,7 +37,7 @@ Bullet const ITEMIZE_DEFAULTS[4] = { Bullet(0, 8),//"\\(\\bullet\\)" Bullet::Bullet(int f, int c, int s) - : font(f), character(c), size(s), user_text(0) + : font(f), character(c), size(s), user_text(0) { if (f < MIN || f >= FONTMAX) { font = MIN; @@ -53,7 +55,7 @@ Bullet::Bullet(int f, int c, int s) Bullet::Bullet(string const & t) - : font(MIN), character(MIN), size(MIN), user_text(1), text(t) + : font(MIN), character(MIN), size(MIN), user_text(1), text(t) { testInvariant(); }