core/vgui/vgui_error_dialog.cxx
Go to the documentation of this file.
00001 // This is core/vgui/vgui_error_dialog.cxx
00002 #include "vgui_error_dialog.h"
00003 //:
00004 // \file
00005 // \author VGG, Oxford University
00006 // \brief  See vgui_error_dialog.h for a description of this file.
00007 
00008 #include <vgui/vgui_dialog.h>
00009 
00010 void vgui_error_dialog(char const* msg)
00011 {
00012   vgui_dialog d("ERROR");
00013   d.message(msg);
00014   d.set_cancel_button("");
00015   d.ask();
00016 }