- Experimented a bit more with the treeview widget, with little success, It should segfault on selection of the menu entry "Add Process"

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@869 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
elvez 2006-08-15 00:43:34 +00:00
parent 45ef305a1b
commit 047f0b8f86
4 changed files with 60 additions and 18 deletions

View file

@ -29,3 +29,6 @@ UserInterruptException::UserInterruptException(const char* msg)
: CPUPolicyException(msg)
{}
UserInterruptException::UserInterruptException(const std::string& msg)
: CPUPolicyException(msg)
{}

View file

@ -38,6 +38,7 @@ namespace sgpem
{
public:
explicit UserInterruptException(const char* msg = "");
explicit UserInterruptException(const std::string& msg = "");
};
} //~ namespace sgpem