X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fmathml_editor%2Fsrc%2FDiff.cc;fp=helm%2FDEVEL%2Fmathml_editor%2Fsrc%2FDiff.cc;h=6c226babdf6ee40defcad41915ae993b37857fbe;hb=701bff1d89e9dbf8b1f6d6b627bab375cb71f1af;hp=294797195740482b29b7a9a6722c4f42d1a9bc8b;hpb=c7a6eb681015fcf125467fd0fe74482d46f2a892;p=helm.git diff --git a/helm/DEVEL/mathml_editor/src/Diff.cc b/helm/DEVEL/mathml_editor/src/Diff.cc index 294797195..6c226babd 100644 --- a/helm/DEVEL/mathml_editor/src/Diff.cc +++ b/helm/DEVEL/mathml_editor/src/Diff.cc @@ -291,7 +291,7 @@ namespace GdomeSmartDOMExt if (elem.hasAttribute("count")) { unsigned count; - istringstream is(elem.getAttribute("count")); + std::istringstream is(elem.getAttribute("count")); is >> count; assert(count == 1); } @@ -331,7 +331,7 @@ namespace GdomeSmartDOMExt unsigned count = 1; if (p2.hasAttribute("count")) { - istringstream is(p2.getAttribute("count")); + std::istringstream is(p2.getAttribute("count")); is >> count; } while (count-- > 0) @@ -365,7 +365,7 @@ namespace GdomeSmartDOMExt unsigned count = 1; if (p2.hasAttribute("count")) { - istringstream is(p2.getAttribute("count")); + std::istringstream is(p2.getAttribute("count")); is >> count; } while (count-- > 0)