Skip to content
Snippets Groups Projects
Commit 5d36f4c8 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

COMP: convert QString to C string

parent 57ecb7d4
No related branches found
No related tags found
No related merge requests found
...@@ -301,7 +301,7 @@ I18nCoreApplication ...@@ -301,7 +301,7 @@ I18nCoreApplication
#if ECHO_QCRITICAL || FORCE_QCRITICAL #if ECHO_QCRITICAL || FORCE_QCRITICAL
#if _WIN32 #if _WIN32
OutputDebugString( "ERROR> " ); OutputDebugString( "ERROR> " );
OutputDebugString( message ); OutputDebugString( qPrintable(message) );
OutputDebugString( "\n" ); OutputDebugString( "\n" );
#endif #endif
std::cerr << "ERROR> " << msg << std::endl; std::cerr << "ERROR> " << msg << std::endl;
...@@ -324,7 +324,7 @@ I18nCoreApplication ...@@ -324,7 +324,7 @@ I18nCoreApplication
#if ECHO_QFATAL || FORCE_QFATAL #if ECHO_QFATAL || FORCE_QFATAL
#if _WIN32 #if _WIN32
OutputDebugString( "FATAL> " ); OutputDebugString( "FATAL> " );
OutputDebugString( message ); OutputDebugString( qPrintable(message) );
OutputDebugString( "\n" ); OutputDebugString( "\n" );
#endif #endif
std::cerr << "FATAL> " << msg << std::endl; std::cerr << "FATAL> " << msg << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment