diff host/tools/configtool/standalone/wxwin/mainwin.cpp @ 2802:e14d4c233d66

* standalone/wxwin/mainwin.cpp: Tweak the conflicts status pane width. * standalone/wxwin/configtooldoc.cpp, standalone/wxwin/filename.cpp: Accommodate UNC file paths. * standalone/wxwin/propertywin.cpp, standalone/wxwin/conflictwin.cpp: Automatically size the last column. * standalone/wxwin/configitem.cpp, standalone/wxwin/configitem.h, standalone/wxwin/configtree.cpp: Do not grey tree item text for active non-modifiable items. * standalone/common/ecosconfig.cxx, standalone/wxwin/configtool.cpp: Update copyright notice years.
author jld
date Mon, 16 Feb 2009 09:17:42 +0000
parents 74dbf4c3f2e1
children 29b1ad0ac76d
line wrap: on
line diff
--- a/host/tools/configtool/standalone/wxwin/mainwin.cpp
+++ b/host/tools/configtool/standalone/wxwin/mainwin.cpp
@@ -1,7 +1,7 @@
 // ####ECOSHOSTGPLCOPYRIGHTBEGIN####                                        
 // -------------------------------------------                              
 // This file is part of the eCos host tools.                                
-// Copyright (C) 1998, 1999, 2000, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+// Copyright (C) 1998, 1999, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 //
 // This program is free software; you can redistribute it and/or modify     
 // it under the terms of the GNU General Public License as published by     
@@ -404,7 +404,7 @@ ecMainFrame::ecMainFrame(wxDocManager *m
 #endif
     
     int* widths = new int[4];
-    widths[0] = -1; widths[1] = 100; widths[2] = 40; widths[3] = 80;
+    widths[0] = -1; widths[1] = 100; widths[2] = 40; widths[3] = 100;
     SetStatusWidths(4, widths);
     delete[] widths;
     
@@ -571,7 +571,7 @@ void ecMainFrame::OnAbout(wxCommandEvent
 	int iTclVerMajor, iTclVerMinor, iTclVerPatchLevel;
 	Tcl_GetVersion (&iTclVerMajor, &iTclVerMinor, &iTclVerPatchLevel, NULL);
 	msg.Printf("eCos Configuration Tool %s (%s %s)\n\n"
-		"Copyright (c) Free Software Foundation, Inc. 1998-2008\n\n"
+		"Copyright (c) Free Software Foundation, Inc. 1998-2009\n\n"
 		"Using %s %s and Tcl %d.%d.%d",
 		ecCONFIGURATION_TOOL_VERSION, __DATE__, __TIME__,
 		wxPlatformInfo::Get().GetPortIdName().c_str(), wxVERSION_NUM_DOT_STRING,