--- np2/macosx/dialog/aboutdlg.cpp 2003/11/12 19:06:33 1.2 +++ np2/macosx/dialog/aboutdlg.cpp 2004/01/11 16:58:48 1.4 @@ -12,6 +12,7 @@ #include "np2ver.h" #include "np2info.h" #include "aboutdlg.h" +#include static WindowRef aboutWin; static PicHandle pict; @@ -81,9 +82,9 @@ static pascal OSStatus cfWinproc(EventHa { case kEventWindowShowing: image = getControlRefByID('logo', 0, aboutWin); - pict = getBMPfromResource("np2logo", &bounds, CFSTR("tiff")); + pict = getBMPfromResource("np2logo.tiff", &bounds); SetControlData(image, kControlNoPart, kControlPictureHandleTag, sizeof(PicHandle), &pict); - version = getControlRefByID('vers', 0, aboutWin); + version = getControlRefByID('vers', 0, aboutWin); SetControlData(version, kControlNoPart, kControlStaticTextTextTag, sizeof(NP2VER_CORE), NP2VER_CORE); err=noErr; break;