Commit 25b23fe22cf7a8425d8c7f0dbea5d708aa9a20e8

  • avatar
  • koom <you @exa…le.com>
  • Mon Jul 12 23:40:32 CEST 2010
added xmessage for linux case of error
  
123123 StandardAlert(kAlertStopAlert,
124124 "\pError",
125125 (ConstStr255Param) msg, NULL, NULL);
126#elif defined __linux__
127 std::cerr << "Error: " << error_text << std::endl;
128 std::string msg="xmessage \"" + error_text + "\"";
129 system(msg.c_str());
126130#else
127131 std::cerr << "Error: " << error_text << std::endl;
128132#endif