]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_rootinset.C
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_rootinset.C
index 9194bbbd28e312fc5ad88409af0a3a511a661e4d..4e22bdbd2dca111276c36f96226c1b537a56458d 100644 (file)
@@ -11,9 +11,6 @@
  *   the GNU General Public Licence version 2 or later.
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_rootinset.h"
 #include "math_mathmlstream.h"
@@ -89,15 +86,15 @@ bool MathRootInset::idxUpDown(idx_type & idx, pos_type & pos, bool up, int) cons
 }
 
 
-void MathRootInset::maplize(MapleStream & os) const
+void MathRootInset::maple(MapleStream & os) const
 {
-       os << "(" << cell(1) << ")^(1/(" << cell(0) <<"))";
+       os << '(' << cell(1) << ")^(1/(" << cell(0) <<"))";
 }
 
 
-void MathRootInset::octavize(OctaveStream & os) const
+void MathRootInset::octave(OctaveStream & os) const
 {
-       os << "root(" << cell(1) << ',' << cell(0) <<')';
+       os << "root(" << cell(1) << ',' << cell(0) << ')';
 }