]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_atom.C
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_atom.C
index a8e2815a0f146acfd65d18ebd5f2e069f4dfafcb..bbc127517920824510c783c6c9089723f7fdda4f 100644 (file)
@@ -14,9 +14,6 @@
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_atom.h"
 #include "math_inset.h"
@@ -48,22 +45,7 @@ void MathAtom::operator=(MathAtom const & at)
 }
 
 
-void MathAtom::operator=(MathInset * p)
-{
-       reset(p);
-}
-
-
 MathAtom::~MathAtom()
 {
        delete nucleus_;
 }
-
-
-void MathAtom::reset(MathInset * p)
-{
-       if (p == nucleus_)
-               return;
-       delete nucleus_;
-       nucleus_ = p;
-}