|
From: <and...@us...> - 2006-04-16 21:30:43
|
Revision: 1287 Author: andreradke Date: 2006-04-16 14:30:34 -0700 (Sun, 16 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1287&view=rev Log Message: ----------- When packing/unpacking the lines of an outline in outtablevisit and intablevisit, perform proper byte-order conversion for Mac Intel build. Modified Paths: -------------- Frontier/trunk/Common/source/oppack.c Modified: Frontier/trunk/Common/source/oppack.c =================================================================== --- Frontier/trunk/Common/source/oppack.c 2006-04-16 21:24:12 UTC (rev 1286) +++ Frontier/trunk/Common/source/oppack.c 2006-04-16 21:30:34 UTC (rev 1287) @@ -47,7 +47,7 @@ typedef enum tylinetableitemflags { -#ifdef MACVERSION +#ifndef SWAP_BYTE_ORDER flexpanded = 0x8000, /*was the line expanded when the outline was closed?*/ flopenwindow = 0x4000, /*was the linked window open when its owner was closed?*/ appbit0 = 0x2000, /*application-defined bit*/ @@ -55,9 +55,7 @@ fllocked = 0x0800, /*is the line locked?*/ flcomment = 0x0400, /*is this line a comment?*/ flbreakpoint = 0x0200 /*is a breakpoint set on this line?*/ -#endif - -#ifdef WIN95VERSION +#else flexpanded = 0x0080, /*was the line expanded when the outline was closed?*/ flopenwindow = 0x0040, /*was the linked window open when its owner was closed?*/ appbit0 = 0x0020, /*application-defined bit*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |