author | mickeyl <mickeyl> | 2003-03-30 02:17:58 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-03-30 02:17:58 (UTC) |
commit | 35e4d0b2a71b8ca15baeb0b0383af21fc1d8d3ae (patch) (unidiff) | |
tree | 335bb12952530b397788e0b02e2072c48788b920 /libopie2 | |
parent | 4ace7ac9fff84df80d3066236ff970b9b393cf48 (diff) | |
download | opie-35e4d0b2a71b8ca15baeb0b0383af21fc1d8d3ae.zip opie-35e4d0b2a71b8ca15baeb0b0383af21fc1d8d3ae.tar.gz opie-35e4d0b2a71b8ca15baeb0b0383af21fc1d8d3ae.tar.bz2 |
one more fix for gcc 2.9x
-rw-r--r-- | libopie2/opiecore/odebug.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libopie2/opiecore/odebug.cpp b/libopie2/opiecore/odebug.cpp index b4eaf2d..b2a37bc 100644 --- a/libopie2/opiecore/odebug.cpp +++ b/libopie2/opiecore/odebug.cpp | |||
@@ -115,25 +115,29 @@ static void oDebugBackend( unsigned short level, unsigned int area, const char * | |||
115 | case ODEBUG_FATAL: lev = "(Fatal)"; caption = "Fatal Error"; priority = LOG_CRIT; break; | 115 | case ODEBUG_FATAL: lev = "(Fatal)"; caption = "Fatal Error"; priority = LOG_CRIT; break; |
116 | default: qDebug( "oDebugBackend: Warning: Unknown debug level! - defaulting to ODEBUG_ERROR." ); | 116 | default: qDebug( "oDebugBackend: Warning: Unknown debug level! - defaulting to ODEBUG_ERROR." ); |
117 | case ODEBUG_ERROR: lev = "(Error)"; caption = "Error"; priority = LOG_ERR; break; | 117 | case ODEBUG_ERROR: lev = "(Error)"; caption = "Error"; priority = LOG_ERR; break; |
118 | } | 118 | } |
119 | 119 | ||
120 | short output = OGlobalSettings::debugMode(); | 120 | short output = OGlobalSettings::debugMode(); |
121 | if (!oApp && (output == 1)) | 121 | if (!oApp && (output == 1)) |
122 | { | 122 | { |
123 | qDebug( "oDebugBackend: Warning: no oapplication object - can't use MsgBox" ); | 123 | qDebug( "oDebugBackend: Warning: no oapplication object - can't use MsgBox" ); |
124 | output = 2; // need an application object to use MsgBox | 124 | output = 2; // need an application object to use MsgBox |
125 | } | 125 | } |
126 | 126 | ||
127 | QString areaName = (oApp) ? oApp->appName() : "<unknown>"; | 127 | // gcc 2.9x is dumb and sucks... can you hear it? |
128 | //QString areaName = (oApp) ? oApp->appName() : "<unknown>"; | ||
129 | QString areaName; | ||
130 | if ( oApp ) areaName = oApp->appName(); | ||
131 | else areaName = "<unknown>"; | ||
128 | 132 | ||
129 | // Output | 133 | // Output |
130 | switch( output ) | 134 | switch( output ) |
131 | { | 135 | { |
132 | case -1: // ignore | 136 | case -1: // ignore |
133 | { | 137 | { |
134 | return; | 138 | return; |
135 | } | 139 | } |
136 | case 0: // File | 140 | case 0: // File |
137 | { | 141 | { |
138 | QString outputFilename = OGlobalSettings::debugOutput(); | 142 | QString outputFilename = OGlobalSettings::debugOutput(); |
139 | 143 | ||