blob: 2610652afe5ccb9da841f17a1a340fdcb8d2adf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
*** apps/converters/ivdowngrade/SoText3V2.c++.orig Thu Jan 2 20:38:57 2003
--- apps/converters/ivdowngrade/SoText3V2.c++ Thu Jan 2 20:39:28 2003
***************
*** 50,55 ****
--- 50,57 ----
*/
#include <Inventor/actions/SoWriteAction.h>
+ #include <Inventor/errors/SoDebugError.h>
+
#include "SoText3V2.h"
char* convToAscii(const SbString& str);
***************
*** 150,156 ****
}
}
#ifdef DEBUG
! if (trunc) SoDebugWarning::post("SoText3V2",
"Note that conversion modified an international text string");
#endif /*DEBUG*/
return newStr;
--- 152,158 ----
}
}
#ifdef DEBUG
! if (trunc) SoDebugError::post("SoText3V2",
"Note that conversion modified an international text string");
#endif /*DEBUG*/
return newStr;
|