]> git.lyx.org Git - lyx.git/blobdiff - src/Bullet.C
* QPrefsDialog::QPrefsDialog():
[lyx.git] / src / Bullet.C
index b8416577747109e02a1a1f3d7f96b29d99aa07c7..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;
@@ -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();
 }