]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.C
small up/down tweaking
[lyx.git] / src / mathed / command_inset.C
index 44cdd0aaab2e2b72f4a0ade87f72d97dde65f938..5c070513c8941243fb42d8c246d72e9dde2837e2 100644 (file)
@@ -1,3 +1,6 @@
+#ifdef __GNUG__
+#pragma implementation
+#endif
 
 #include "command_inset.h"
 #include "math_mathmlstream.h"
@@ -40,10 +43,10 @@ CommandInset::dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos)
 
 void CommandInset::write(WriteStream & os) const
 {
-       os << "\\" << name_.c_str();
+       os << '\\' << name_.c_str();
        if (cell(1).size())
-               os << "[" << cell(1) << "]";
-       os << "{" << cell(0) << "}";
+               os << '[' << cell(1) << ']';
+       os << '{' << cell(0) << '}';
 }