]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/x11/errordialog.cpp
Implement graphical reporting for uncaught exceptions
[libs/gui.git] / source / graphics / x11 / errordialog.cpp
1 #include "errordialog.h"
2
3 using namespace std;
4
5 namespace Msp {
6 namespace Graphics {
7
8 bool ErrorDialog::report_uncaught_exception(const exception &) const
9 {
10         // TODO Implement a simple dialog with basic X11 primitives
11         return false;
12 }
13
14 } // namespace Graphics
15 } // namespace Msp