]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.C
fix #1073
[lyx.git] / src / mathed / command_inset.C
index f8a03c2e382e4f34962bbbb2434a3bbca9d1aa74..34956bcdff2c9d5fd5b9e15aaa38b23125567185 100644 (file)
@@ -5,20 +5,10 @@
 #include "Lsstream.h"
 
 
-CommandInset::CommandInset(string const & data)
+CommandInset::CommandInset(string const & name)
+       : name_(name)
 {
        lock_ = true;
-
-       string::size_type idx0 = data.find("|++|");
-       name_ = data.substr(0, idx0);
-       if (idx0 == string::npos)
-               return;
-       idx0 += 4;
-       string::size_type idx1 = data.find("|++|", idx0);
-       cell(0) = asArray(data.substr(idx0, idx1 - idx0));
-       if (idx1 == string::npos)
-               return;
-       cell(1) = asArray(data.substr(idx1 + 4));
 }