blob: fedd73be35e5719cef7ca2861705651189bb7856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- library/qpeapplication.cpp.org 2007-01-24 19:54:07.000000000 +0000
+++ library/qpeapplication.cpp 2007-05-03 03:34:10.000000000 +0000
@@ -792,14 +792,14 @@
{
switch ( type ) {
case QtDebugMsg:
-#ifdef QT_DEBUG
+//#ifdef QT_DEBUG
fprintf( stderr, "Debug: %s\n", msg );
-#endif
+//#endif
break;
case QtWarningMsg:
-#ifdef QT_DEBUG
+//#ifdef QT_DEBUG
fprintf( stderr, "Warning: %s\n", msg );
-#endif
+//#endif
break;
case QtFatalMsg:
fprintf( stderr, "Fatal: %s\n", msg );
|