From 20ecc6f387ef0c0daf04bad7a6d6cce98de91e32 Mon Sep 17 00:00:00 2001 From: Francois Henrotte <francois.henrotte@ulg.ac.be> Date: Wed, 11 Jan 2012 10:24:41 +0000 Subject: [PATCH] Error -> Fatal --- Fltk/onelabWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Fltk/onelabWindow.cpp b/Fltk/onelabWindow.cpp index 0539f4a64b..194458d553 100644 --- a/Fltk/onelabWindow.cpp +++ b/Fltk/onelabWindow.cpp @@ -181,7 +181,7 @@ bool onelab::localNetworkClient::run(const std::string &what) set(p); } else - Msg::Error("FIXME not done for this parameter type: %s", type.c_str()); + Msg::Error("FIXME not done for this parameter types: %s", type.c_str()); } break; case GmshSocket::GMSH_PARAMETER_QUERY: @@ -199,7 +199,7 @@ bool onelab::localNetworkClient::run(const std::string &what) if(par.size() == 1) reply = par[0].toChar(); } else - Msg::Error("FIXME query not done for this parameter type"); + Msg::Fatal("FIXME query not done for this parameter type"); if(reply.size()){ server->SendMessage(GmshSocket::GMSH_PARAMETER, reply.size(), &reply[0]); } @@ -660,7 +660,7 @@ void onelab_cb(Fl_Widget *w, void *data) // variable to "check" or "compute", and letting the client decide what to // do) if(action == "check"){ - if(c->getName() == "GetDP") + if(c->getName() == "GetDP") // client name as defined in getdp/Common/Message.cpp::InitializeOnelab() c->run(what); else c->run(what + " -a "); // '-a' for 'analyse only' -- GitLab