Mercurial > ecos
changeset 2444:b717ff319fe2
Clean up for GCC-4.x
| author | gthomas |
|---|---|
| date | Thu, 25 Oct 2007 15:17:49 +0000 |
| parents | 35ebfcfbf22e |
| children | 6ae04ddf9b8e |
| files | host/tools/configtool/ChangeLog host/tools/configtool/standalone/wxwin/propertywin.h host/tools/ecostest/ChangeLog host/tools/ecostest/common/eCosTest.h |
| diffstat | 4 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/host/tools/configtool/ChangeLog +++ b/host/tools/configtool/ChangeLog @@ -1,3 +1,8 @@ +2007-10-25 Gary Thomas <gary@mlbassoc.com> + + * standalone/wxwin/propertywin.h: Remove class qualifier - not + legal with GCC-4.x + 2006-09-06 John Dallaway <jld@ecoscentric.com> * standalone/wxwin/configitem.cpp: Allow full 32-bit signed integer
--- a/host/tools/configtool/standalone/wxwin/propertywin.h +++ b/host/tools/configtool/standalone/wxwin/propertywin.h @@ -93,7 +93,7 @@ private: int m_nFirstProperty; ecConfigItem *m_pti; - static const std::string ecPropertyListCtrl::visible_properties []; + static const std::string visible_properties []; static const wxChar* sm_fieldTypeImage[ecMAXFIELDTYPE]; };
--- a/host/tools/ecostest/ChangeLog +++ b/host/tools/ecostest/ChangeLog @@ -1,3 +1,8 @@ +2007-10-25 Gary Thomas <gary@mlbassoc.com> + + * common/eCosTest.h: Remove class qualifier - no longer legal + in GCC-4.x + 2006-07-10 John Dallaway <jld@ecoscentric.com> * common/eCosTestUtils.cpp, common/eCosTestUtils.h: Tweak function
--- a/host/tools/ecostest/common/eCosTest.h +++ b/host/tools/ecostest/common/eCosTest.h @@ -199,7 +199,7 @@ public: bool GetSizes(); // Connect to a test server - static ServerStatus CeCosTest::Connect (LPCTSTR pszHostPort, CeCosSocket *&pSock, const ExecutionParameters &e,String &strInfo,Duration dTimeout=10*1000); + static ServerStatus Connect (LPCTSTR pszHostPort, CeCosSocket *&pSock, const ExecutionParameters &e,String &strInfo,Duration dTimeout=10*1000); // Log some output. The accumulated output can be retrieved using Output() void Log (LPCTSTR const pszFormat,...);
