]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.C
Georg Baum's vspace change
[lyx.git] / src / mathed / math_arrayinset.C
index 2f25b6a937a7b349d9764ebd84ee0dd16eb81f8c..c32473e30e49d86f617f7c1b46c99fabbfc8d750 100644 (file)
@@ -21,6 +21,7 @@
 
 using std::getline;
 
+using std::string;
 using std::auto_ptr;
 using std::istringstream;
 using std::istream_iterator;
@@ -48,10 +49,10 @@ MathArrayInset::MathArrayInset(string const & name, string const & str)
        : MathGridInset(1, 1), name_(name)
 {
        vector< vector<string> > dat;
-       istringstream is(STRCONV(str));
+       istringstream is(str);
        string line;
        while (getline(is, line)) {
-               istringstream ls(STRCONV(line));
+               istringstream ls(line);
                typedef istream_iterator<string> iter;
                vector<string> v = vector<string>(iter(ls), iter());
                if (v.size())