]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.C
ws changes only
[lyx.git] / src / paragraph_funcs.C
index 973743df7454dbd4ced6a1498028721d43f31327..91bca9935817ba83568024db2d3051a5a562e956 100644 (file)
@@ -46,7 +46,7 @@ using lyx::support::bformat;
 using lyx::support::subst;
 
 using std::endl;
-
+using std::string;
 using std::istringstream;
 using std::ostream;
 
@@ -968,14 +968,14 @@ int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & tok
                change = Change(Change::UNCHANGED);
        } else if (token == "\\change_inserted") {
                lex.nextToken();
-               istringstream is(STRCONV(lex.getString()));
+               istringstream is(lex.getString());
                int aid;
                lyx::time_type ct;
                is >> aid >> ct;
                change = Change(Change::INSERTED, bp.author_map[aid], ct);
        } else if (token == "\\change_deleted") {
                lex.nextToken();
-               istringstream is(STRCONV(lex.getString()));
+               istringstream is(lex.getString());
                int aid;
                lyx::time_type ct;
                is >> aid >> ct;