X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftabular.C;h=f07b3e48c28aa6831c3f0feb19cef526996bd1dc;hb=73603ed31be3133738cb93a65dd5ead9782c7a34;hp=d43d6b58925a0aa26add94e890ed183b5e5d4e4f;hpb=9c2ba3c4ff17e15876a2ed6987ea44838a38d43b;p=lyx.git diff --git a/src/tabular.C b/src/tabular.C index d43d6b5892..f07b3e48c2 100644 --- a/src/tabular.C +++ b/src/tabular.C @@ -37,7 +37,6 @@ using lyx::support::ltrim; using lyx::support::prefixIs; using lyx::support::rtrim; -using lyx::support::strToInt; using lyx::support::suffixIs; using boost::shared_ptr; @@ -249,7 +248,7 @@ bool getTokenValue(string const & str, char const * token, int & num) num = 0; if (!getTokenValue(str, token, tmp)) return false; - num = strToInt(tmp); + num = convert(tmp); return true; }