comparison host/tools/configtool/standalone/wxwin/appsettings.cpp @ 3277:047bbfee43f6

* standalone/wxwin/appsettings.cpp, standalone/wxwin/conflictsdlg.cpp: Silence initialization order compiler warnings with recent GCC. [ Bugzilla 1001948 ]
author jld
date Fri, 28 Feb 2014 10:04:06 +0000
parents 74dbf4c3f2e1
children 4b1912ce7f4f
comparison
equal deleted inserted replaced
3276:53088a1817a7 3277:047bbfee43f6
1 // ####ECOSHOSTGPLCOPYRIGHTBEGIN#### 1 // ####ECOSHOSTGPLCOPYRIGHTBEGIN####
2 // ------------------------------------------- 2 // -------------------------------------------
3 // This file is part of the eCos host tools. 3 // This file is part of the eCos host tools.
4 // Copyright (C) 1998, 1999, 2000, 2003, 2005, 2006, 2008 Free Software Foundation, Inc. 4 // Copyright (C) 1998, 1999, 2000, 2003, 2005, 2006, 2008, 2014 Free Software Foundation, Inc.
5 // 5 //
6 // This program is free software; you can redistribute it and/or modify 6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by 7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 or (at your option) any 8 // the Free Software Foundation; either version 2 or (at your option) any
9 // later version. 9 // later version.
907 m_nDownloadTimeout(120), 907 m_nDownloadTimeout(120),
908 m_nTimeoutType(TIMEOUT_AUTOMATIC), 908 m_nTimeoutType(TIMEOUT_AUTOMATIC),
909 m_nDownloadTimeoutType(TIMEOUT_SPECIFIED), 909 m_nDownloadTimeoutType(TIMEOUT_SPECIFIED),
910 m_bRemote(FALSE), 910 m_bRemote(FALSE),
911 m_bSerial(TRUE), 911 m_bSerial(TRUE),
912 m_strPort(wxT("/dev/ttyS0")),
913 m_nBaud(38400), 912 m_nBaud(38400),
914 m_nLocalTCPIPPort(9000), 913 m_nLocalTCPIPPort(9000),
915 m_nReset(RESET_MANUAL), 914 m_nReset(RESET_MANUAL),
916 m_nResourcePort(1), 915 m_nResourcePort(1),
917 m_nRemotePort(1), 916 m_nRemotePort(1),
918 m_bFarmed(TRUE), 917 m_bFarmed(TRUE),
918 m_strPort(wxT("/dev/ttyS0")),
919 m_strRemoteHost(wxT("")), 919 m_strRemoteHost(wxT("")),
920 m_strResourceHost(wxT("")), 920 m_strResourceHost(wxT("")),
921 m_strLocalTCPIPHost(wxT("")), 921 m_strLocalTCPIPHost(wxT("")),
922 m_strReset(wxT("")) 922 m_strReset(wxT(""))
923 { 923 {