]> git.lyx.org Git - features.git/blobdiff - src/lyxlength.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / lyxlength.C
index c461efd4755dd666661e2c7275aabafef4ceeadf..eaee147fc4e2e28f91a57d0837bef1d6b45150fd 100644 (file)
@@ -19,8 +19,8 @@
 #include "lengthcommon.h"
 #include "lyxrc.h"
 
+#include <sstream>
 
-#include "support/std_sstream.h"
 
 using std::abs;
 using std::ostringstream;
@@ -64,20 +64,20 @@ string const LyXLength::asLatexString() const
        switch (unit_) {
        case PTW:
                snprintf(buffer, 78, "%.2f\\textwidth", val_/100.0);
-               break;                    
-       case PCW:                   
+               break;
+       case PCW:
                snprintf(buffer, 78, "%.2f\\columnwidth", val_/100.0);
-               break;                    
-       case PPW:                   
+               break;
+       case PPW:
                snprintf(buffer, 78, "%.2f\\paperwidth", val_/100.0);
-               break;                    
-       case PLW:                   
+               break;
+       case PLW:
                snprintf(buffer, 78, "%.2f\\linewidth", val_/100.0);
-               break;                    
-       case PPH:                   
+               break;
+       case PPH:
                snprintf(buffer, 78, "%.2f\\paperheight", val_/100.0);
-               break;                    
-       case PTH:                   
+               break;
+       case PTH:
                snprintf(buffer, 78, "%.2f\\textheight", val_/100.0);
                break;
        default: