[GME-commit] GMESRC/GME/Console ScriptEdit.cpp,1.2,1.3
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Tue Jul 19 18:48:30 CDT 2005
- Previous message: [GME-commit] GMESRC/GME/Gme GME.rc,1.140,1.141 GMEDoc.cpp,1.28,1.29
GMEOLEData.cpp,1.22,1.23 GMEOLEData.h,1.9,1.10
GMEView.cpp,1.171,1.172 GMEView.h,1.68,1.69 resource.h,1.65,1.66
- Next message: [GME-commit] GMESRC/GME/ConstraintManager OCLContext.h,1.7,1.8
OCLException.h,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /project/gme-repository/GMESRC/GME/Console
In directory escher:/tmp/cvs-serv29485
Modified Files:
ScriptEdit.cpp
Log Message:
warnings eliminated
CVS User: Zoltan Molnar, ISIS (zolmol)
Index: ScriptEdit.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Console/ScriptEdit.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ScriptEdit.cpp 15 Apr 2005 18:24:10 -0000 1.2
--- ScriptEdit.cpp 19 Jul 2005 17:48:28 -0000 1.3
***************
*** 60,64 ****
{
lastup++;
! if (lastup >= m_inputlist.size())
lastup = (m_inputlist.size()==0)? 0: m_inputlist.size()-1;
if (!m_inputlist.empty())
--- 60,64 ----
{
lastup++;
! if (lastup >= (int) m_inputlist.size())
lastup = (m_inputlist.size()==0)? 0: m_inputlist.size()-1;
if (!m_inputlist.empty())
***************
*** 90,94 ****
m_console->Message((LPCTSTR)inp, MSG_NORMAL);
// check if inp already exists
! for (int k=0; k<m_inputlist.size(); k++)
{
if (m_inputlist[k] == inp)
--- 90,94 ----
m_console->Message((LPCTSTR)inp, MSG_NORMAL);
// check if inp already exists
! for (int k=0; k<(int) m_inputlist.size(); k++)
{
if (m_inputlist[k] == inp)
- Previous message: [GME-commit] GMESRC/GME/Gme GME.rc,1.140,1.141 GMEDoc.cpp,1.28,1.29
GMEOLEData.cpp,1.22,1.23 GMEOLEData.h,1.9,1.10
GMEView.cpp,1.171,1.172 GMEView.h,1.68,1.69 resource.h,1.65,1.66
- Next message: [GME-commit] GMESRC/GME/ConstraintManager OCLContext.h,1.7,1.8
OCLException.h,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list