Такое законно?
QString storedMessage;
...
try
{
....
if ( bad ) throw QString("error message");
....
} catch (QString msg) {
storedMessage = msg;
}
Такое законно?
QString storedMessage;
...
try
{
....
if ( bad ) throw QString("error message");
....
} catch (QString msg) {
storedMessage = msg;
}