Problem: 1661306

Title: (Includes) Wrong include guard in UApplication.cp

Received: Jun 6 1997 5:01PM


This isn't causing any problems right now, and when it does you will know it first, but the next time you're there...

The line in UApplication.cp:

#ifndef __ImageCompression__
#include 
#endif
should be changed to:
#ifndef __IMAGECOMPRESSION__
#include 
#endif
to match the original #define.
Fix:
In UApplication.cp:
Changed #ifndef __ImageCompression__ to #ifndef __IMAGECOMPRESSION__