ossp-pkg/as/as-gui/as_except.cpp 1.3 -> 1.4
--- as_except.cpp 2002/12/02 13:25:36 1.3
+++ as_except.cpp 2002/12/18 10:36:10 1.4
@@ -35,9 +35,10 @@
// Report general exception
void Genexcept::reportErr(void)
{
+ QTextOStream Errstream(stderr);
+
// Basically, print the message and exit
- using namespace std;
- cout << szMessage << endl;
+ Errstream << szMessage << endl;
}
// Destroy general exception
|
|