|
From: <cre...@us...> - 2006-05-06 00:23:42
|
Revision: 1366 Author: creecode Date: 2006-05-05 17:23:35 -0700 (Fri, 05 May 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1366&view=rev Log Message: ----------- in pictunpack function replace call to recttodiskrect with diskrecttorect and swap parameters, fixes bug when picture window opened it would be in the far upper left of the screen and teeny tiny, also pict window wouldn't remember its last window rect Modified Paths: -------------- Frontier/trunk/Common/source/pict.c Modified: Frontier/trunk/Common/source/pict.c =================================================================== --- Frontier/trunk/Common/source/pict.c 2006-05-05 22:20:50 UTC (rev 1365) +++ Frontier/trunk/Common/source/pict.c 2006-05-06 00:23:35 UTC (rev 1366) @@ -283,7 +283,7 @@ hp = *hpict; /*copy into register*/ - recttodiskrect (&(**hp).windowrect, &header.windowrect); + diskrecttorect (&header.windowrect, &(**hp).windowrect); (**hp).timecreated = conditionallongswap (header.timecreated); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |