]> git.lyx.org Git - lyx.git/blobdiff - src/Bullet.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / Bullet.C
index d362d815786d61f0d90d36b3b7fbddc9fee41489..91965f9706ba176b2dcf5fceed6f2509a7aa655a 100644 (file)
@@ -20,6 +20,8 @@
 
 #include <boost/assert.hpp>
 
+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;