2012-11-24 5 views

Répondre

3

trouvé la réponse here:

Catch by reference rather than by value

Catching by value causes GCC to use the compiler support function __cxa_get_exception_ptr. This is not available in the compiler support libraries on Symbian OS prior to Symbian^3. Catching by reference avoids this problem.

donc remplacer

catch (QString error) 

avec

catch (QString &error) 

le corrige.

Questions connexes