|
From: Andre R. <and...@us...> - 2006-03-04 16:34:49
|
Update of /cvsroot/frontierkernel/Frontier/Common/stubs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22393 Modified Files: megastubs.c Log Message: Pick up application name for dialog title bar from versions.h. Index: megastubs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/stubs/megastubs.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** megastubs.c 5 Feb 2006 16:53:19 -0000 1.6 --- megastubs.c 4 Mar 2006 16:34:45 -0000 1.7 *************** *** 29,32 **** --- 29,33 ---- #include "standard.h" + #include "versions.h" /* 2006-03-04 aradke: for APPNAME */ #include "error.h" #include "font.h" *************** *** 690,702 **** } /*centerdialog*/ ! #ifdef PIKE /*7.0d8 PBS*/ ! #ifndef OPMLEDITOR ! static char frontierstring [] = "Radio UserLand"; ! #else //OPMLEDITOR ! static char frontierstring [] = "OPML"; ! #endif // OPMLEDITOR ! #else ! static char frontierstring [] = "UserLand Frontier"; ! #endif static messagebox (LPCTSTR lpText, LPCTSTR lpCaption, UINT uType) { --- 691,707 ---- } /*centerdialog*/ ! ! //#ifdef PIKE /*7.0d8 PBS*/ ! //#ifndef OPMLEDITOR ! // static char frontierstring [] = "Radio UserLand"; ! //#else //OPMLEDITOR ! // static char frontierstring [] = "OPML"; ! //#endif // OPMLEDITOR ! //#else ! // static char frontierstring [] = "UserLand Frontier"; ! //#endif ! ! static char frontierstring [] = APPNAME; /* 2006-03-04 aradke: from versions.h */ ! static messagebox (LPCTSTR lpText, LPCTSTR lpCaption, UINT uType) { |