Check-in Number:
|
4683 | |
Date: |
2004-Aug-20 19:50:44 (local)
2004-Aug-20 17:50:44 (UTC) |
User: | ms |
Branch: | |
Comment: |
Incoming string constants should be identified so. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_except.h 1.6 -> 1.7
--- as_except.h 2004/05/27 21:48:41 1.6
+++ as_except.h 2004/08/20 17:50:44 1.7
@@ -44,7 +44,7 @@
char *szMessage;
public:
- Genexcept(char *szInmess) {szMessage = szInmess;};
+ Genexcept(const char *szInmess) {szMessage = (char *)szInmess;};
void reportErr(void);
~Genexcept(void);
};
|
|