[Paraview] ParaView 3.10 RC1 Window Title Not Correct (OS X)
Michael Jackson
mike.jackson at bluequartz.net
Mon Feb 7 10:37:51 EST 2011
Just compiled the latest ParaView from git (master) and when I launched the app I noticed at the top that it had "32 Bit" in the title. Just to verify my version was actually a 64 bit version. My guess is that when that title is generated in code there should be some preprocessor logic to figure out just how it was built. Relying on the sizeof(void*) probably isn't the best idea:
#if !defined(__APPLE__)
Compute title for NON Apple Platforms
#else
# if defined(__LP64__) && __LP64__
64 BIt title
# else
32 bit title
# endif
#endif
Should I put in a formal bug report?
Thanks
___________________________________________________________
Mike Jackson www.bluequartz.net
Principal Software Engineer mike.jackson at bluequartz.net
BlueQuartz Software Dayton, Ohio
More information about the ParaView
mailing list