]> git.saurik.com Git - wxWidgets.git/commitdiff
Updates for 2.3.1; fixed syntax error in makefile.b32 but this probably
authorJulian Smart <julian@anthemion.co.uk>
Sat, 9 Jun 2001 17:43:16 +0000 (17:43 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 9 Jun 2001 17:43:16 +0000 (17:43 +0000)
means that the 'version' fix for BC++ doesn't work (misapplied?)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10477 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

12 files changed:
distrib/msw/innobott.txt
distrib/msw/innotop.txt
distrib/msw/tmake/b32.t
distrib/msw/zipdistinno.bat
docs/changes.txt
docs/latex/wx/snglinst.tex
docs/readme.txt
src/generic/gridctrl.cpp
src/msw/makefile.b32
src/msw/textctrl.cpp
src/wxvc.dsp
src/wxvc_dll.dsp

index ee50041d17e8629d56ad13f1854194e86c855c8f..85e1e66cd6767a457806ba70b3d4e465953fa0a2 100644 (file)
@@ -31,7 +31,7 @@
 ; DO NOT DELETE THEM or you may be unable to reload the script
 
 ;[ScriptSetup]
-;VerNum=2.3.0
+;VerNum=2.3.1
 ;InnoVer=1.3
 ;AddVerTo=AppVerName
 ;SetupFilename=setup.exe
index d06b5543799882e7557d640300657e9329eb89ab..68cce278eda3dca4458fa24b65ca3b23945cad81 100644 (file)
@@ -4,13 +4,13 @@
 
 [Setup]
     MinVersion=4.0,4.0
-    AppName=wxWindows 2.3.0
+    AppName=wxWindows 2.3.1
     AppId=wxWindows
     CreateUninstallRegKey=1
     UsePreviousAppDir=1
     UsePreviousGroup=1
-    AppVersion=2.3.0
-    AppVerName=wxWindows 2.3.0
+    AppVersion=2.3.1
+    AppVerName=wxWindows 2.3.1
     AppCopyright=Copyright © The wxWindows Team
     BackColor=$FF0000
     BackColor2=$000000
@@ -19,7 +19,7 @@
     WindowStartMaximized=1
     WindowVisible=1
     WindowResizable=1
-    UninstallDisplayName=wxWindows 2.3.0
+    UninstallDisplayName=wxWindows 2.3.1
     UninstallLogMode=Append
     DirExistsWarning=auto
     UninstallFilesDir={app}
     CreateAppDir=1
     DisableProgramGroupPage=0
     AlwaysCreateUninstallIcon=1
-    UninstallIconName=Uninstall wxWindows 2.3.0
+    UninstallIconName=Uninstall wxWindows 2.3.1
     Uninstallable=1
     DefaultDirName=c:\wx230
-    DefaultGroupName=wxWindows 2.3.0
+    DefaultGroupName=wxWindows 2.3.1
     LicenseFile=C:\wx2dev\wxWindows\docs\licence.txt
     InfoBeforeFile=C:\wx2dev\wxWindows\docs\readme.txt
     InfoAfterFile=C:\wx2dev\wxWindows\docs\msw\install.txt
index 3544db6ba5bd6663fead22dfc85fc947f8179ef8..4f48d2e4cc691782547926ed8fc27186e2bf3783 100644 (file)
@@ -159,7 +159,7 @@ default:    wx
 
 wx:    $(CFG) $(DUMMY).obj $(OBJECTS) $(PERIPH_TARGET) $(LIBTARGET)
 
-all:   all_libs all_execs
+all:   wx
 
 !if "$(DLL)" == "0"
 
@@ -189,7 +189,8 @@ wxb32
 
 dummy.obj: dummy.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
 dummydll.obj: dummydll.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
-version.res
+
+#version.res
 
 $(MSWDIR)\y_tab.obj:     $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
 
index dea59e0e1d0002b0c8a56f4ae89dbdf0dc9d5227..18b2237bdf4314b9bb3313ea531654a1c0b5eb50 100755 (executable)
@@ -6,7 +6,7 @@ set dest=%src\deliver
 set inno=0
 
 Rem Set this to the required version
-set version=2.3.0
+set version=2.3.1
 
 if "%src" == "" goto usage
 if "%dest" == "" goto usage
index 122b60b42b3f858628d55d0ee96b639e96ff4bfb..43672a8637943f8b28eee3857f8658b504f8cb9c 100644 (file)
@@ -4,16 +4,58 @@ wxWindows 2 Change Log
 2.3.1
 -----
 
+wxBase:
+
+- Fixes for gcc 3.0
+- Fixed new charset detection code (langinfo.h not included in intl.cpp;
+  langinfo.h not neccessary in strconv.cpp)
+- ODBC Informix fixes (submitted by Roger Gammans)
+- Added wxDir::Traverse
+
 All (GUI):
 
 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
   user code can get access to the edit control when it is created, (to
-  push on a custom event handler for example.)
+  push on a custom event handler for example)
 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
-  GetDefaultStyle methods to wxTextCtrl.
+  GetDefaultStyle methods to wxTextCtrl
+- Added wxSingleInstanceChecker
+- Improvements to Tex2RTF
+- Added Paul and Roger Gammans' grid controls
+- Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
+  first-time saved
+- Fixed memory leak in textcmn.cpp
+- Various wxXML enhancements
+- Removed wxCLIP_CHILDREN style from wxSplitterWindow
+- Fixed memory leak in DoPrint, htmprint.cpp
+- Fixed calendar sample bug with using wxCommandEvent::GetInt()
+  instead of GetId()
 
+wxMSW:
 
+- Fixed wxApp::ProcessMessage so controls don't lose their
+  accelerators when the accelerators are redefined elsewhere
+- Accelerators consisting of simple keystrokes (without control,
+  alt or shift) are now possible
+- Compile fixes for Watcom C++ added
+- Compile fixes for Cygwin 1.0 added
+- Replaced wxYield() call in PopupMenu() by a much safer
+  wxYieldForCommandsOnly() - fixes tree ctrl bug
+- Enter processing in wxSpinCtrl fixed
+- Fixed bug in determining the best listbox size
+- Fix for wxFrame's last focus bug
+- We now send iconize events
+- Fixed wxFrame::SetClientSize() with toolbar bug
+- Added mousewheel processing
 
+wxGTK:
+
+- Fixed slider rounding bug
+- Added code to set wxFont's default encoding to
+  wxLocale::GetSystemEncoding()
+- We now send iconize events
+- Fix for discrepancies between wxNotebookEvent and wxNotebook
+  GetSelection() results
 
 2.3.0
 -----
@@ -49,7 +91,6 @@ All (GUI):
 - ODBC NULL column support completed (Roger/Paul Gammans)
 - ODBC All "char *" and char arrays removed and replaced with wxString use
 
-
 wxMSW:
 
 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
index 4e4f3cce62f1927c7dc9c43680866d8fa6474752..10f4535c7e3a48cb386db5996e9efc6f8050abaa 100644 (file)
@@ -80,7 +80,7 @@ had been used is an error.
 
 \wxheading{Parameters}
 
-\docparam{name}{must be given and be as unique as possible, it is used as the
+\docparam{name}{must be given and be as unique as possible. It is used as the
 mutex name under Win32 and the lock file name under Unix. 
 \helpref{GetAppName()}{wxappgetappname} may be a good value for this parameter}
 
index a3e6d1cfd82e55c56d96fcf432694e41a4a89d8a..6168e21a454f58daa080e9a2992feaad5d814280 100644 (file)
@@ -1,4 +1,4 @@
-wxWindows 2.3.0
+wxWindows 2.3.1
 ---------------
 
 *** Please note that this is an UNSTABLE DEVELOPMENT SNAPSHOT.
@@ -182,9 +182,6 @@ the Independent JPEG Group". See src/jpeg/README for details.
 Documentation
 -------------
 
-See docs/bugs.txt for a bug list: this file is new and will initially
-  be edited by hand, later generated from a web-based bug database.
-
 See docs/html/index.htm for an HTML index of the major documents.
 
 See docs/changes.txt for a summary of changes to wxWindows 2.
@@ -215,7 +212,7 @@ front-end and hundreds of MB of compilers, utilities and other
 material may be ordered from the CD-ROM page: see the wxWindows
 web site.
 
-Good luck!
+Have fun!
 
-The wxWindows Team, 12th May, 2001
+The wxWindows Team, 10th June, 2001
 
index 6a6076ace6f0b63533cf14bbf4155e6c7f004686..a6f8f58b808e85e953015249cec8bc453a49bb0e 100644 (file)
@@ -115,7 +115,7 @@ wxSize wxGridCellDateTimeRenderer::GetBestSize(wxGrid& grid,
 }
 
 void wxGridCellDateTimeRenderer::SetParameters(const wxString& params){
-    if(params)
+    if (!params.IsEmpty())
         m_oformat=params;
 }
 
@@ -128,7 +128,7 @@ void wxGridCellDateTimeRenderer::SetParameters(const wxString& params){
 
 wxGridCellEnumRenderer::wxGridCellEnumRenderer(const wxString& choices)
 {
-    if(choices)
+    if (!choices.IsEmpty())
         SetParameters(choices);
 }
 
@@ -215,7 +215,7 @@ void wxGridCellEnumRenderer::SetParameters(const wxString& params)
 wxGridCellEnumEditor::wxGridCellEnumEditor(const wxString& choices)
                     : wxGridCellChoiceEditor()
 {
-    if(choices)
+    if (!choices.IsEmpty())
         SetParameters(choices);
 }
 
@@ -363,7 +363,7 @@ wxGridCellAutoWrapStringRenderer::GetBestSize(wxGrid& grid,
                                               wxDC& dc,
                                               int row, int col)
 {
-    int x,y, height , width = grid.GetColSize(col) -10;
+    wxCoord x,y, height , width = grid.GetColSize(col) -10;
     int count = 250; //Limit iterations..
 
     wxRect rect(0,0,width,10);
index d641cf2cea67b7631d0f7dd99799214b6760e65e..edae379db6d7b258b77436ea71653f8c03288184 100644 (file)
@@ -351,7 +351,7 @@ default:    wx
 
 wx:    $(CFG) $(DUMMY).obj $(OBJECTS) $(PERIPH_TARGET) $(LIBTARGET)
 
-all:   all_libs all_execs
+all:   wx
 
 !if "$(DLL)" == "0"
 
@@ -381,7 +381,8 @@ wxb32
 
 dummy.obj: dummy.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
 dummydll.obj: dummydll.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
-version.res
+
+#version.res
 
 $(MSWDIR)\y_tab.obj:     $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
 
index 9d68d44fc6d5bbb305f8d3d962d264b0445a1d1b..0676f10f0d94a397c299c27738ff7c8575774839 100644 (file)
@@ -1313,6 +1313,10 @@ bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style)
     }
 
 #if wxUSE_RICHEDIT2
+#ifndef CFM_BACKCOLOR
+#define CFM_BACKCOLOR 0x04000000
+#endif
+
     if ( wxRichEditModule::GetLoadedVersion() > 1 && style.HasBackgroundColour() )
     {
         cf.dwMask |= CFM_BACKCOLOR;
index bfca38b300b10390da25e1cda58ff313c8a3e48d..94a009a11f7ba54784d5df2d9f89e3f43729e929 100644 (file)
@@ -560,6 +560,10 @@ SOURCE=.\generic\grid.cpp
 # End Source File
 # Begin Source File
 
+SOURCE=.\generic\gridctrl.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\generic\gridsel.cpp
 # End Source File
 # Begin Source File
@@ -1067,6 +1071,10 @@ SOURCE=.\msw\slidrmsw.cpp
 # End Source File
 # Begin Source File
 
+SOURCE=.\msw\snglinst.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\msw\spinbutt.cpp
 # End Source File
 # Begin Source File
index 9fe23cf9c1f56d8e483265a677523310b3b99b1f..cfead83e22981601b54e7b8edd9f4c5301aaaa87 100644 (file)
@@ -558,6 +558,10 @@ SOURCE=.\generic\grid.cpp
 # End Source File
 # Begin Source File
 
+SOURCE=.\generic\gridctrl.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\generic\gridsel.cpp
 # End Source File
 # Begin Source File
@@ -1065,6 +1069,10 @@ SOURCE=.\msw\slidrmsw.cpp
 # End Source File
 # Begin Source File
 
+SOURCE=.\msw\snglinst.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\msw\spinbutt.cpp
 # End Source File
 # Begin Source File