[Igarden-commit] Garden/source/PlanTool PlanView.cpp, 1.47.2.1, 1.47.2.2
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2006-11-26 01:16:37
|
Update of /cvsroot/igarden/Garden/source/PlanTool In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4439 Modified Files: Tag: Release_branch_v1 PlanView.cpp Log Message: Little-endian changes Index: PlanView.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/PlanTool/PlanView.cpp,v retrieving revision 1.47.2.1 retrieving revision 1.47.2.2 diff -C2 -d -r1.47.2.1 -r1.47.2.2 *** PlanView.cpp 2 Nov 2006 23:41:19 -0000 1.47.2.1 --- PlanView.cpp 26 Nov 2006 01:16:35 -0000 1.47.2.2 *************** *** 70,75 **** inStream.Read(sizeof(theViewInfo), &theViewInfo); ! _hRulerID = theViewInfo.hRulerID; ! _vRulerID = theViewInfo.vRulerID; _layout = NULL; _gridSpacing = 10; --- 70,75 ---- inStream.Read(sizeof(theViewInfo), &theViewInfo); ! _hRulerID = NSwapLong(theViewInfo.hRulerID); ! _vRulerID = NSwapLong(theViewInfo.vRulerID); _layout = NULL; _gridSpacing = 10; *************** *** 213,217 **** /****/ - _layout->RestoreLayoutSettings(this); RecalcScroll(); --- 213,216 ---- |