Small fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@431 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-08-04 07:24:05 +00:00
parent c5c16a3025
commit e8435fa381
8 changed files with 23 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
docs/msw/*.txt docs/msw/*.txt
docs/licence.txt
src/makeb32.env src/makeb32.env
src/makebcc.env src/makebcc.env

View File

@@ -11,7 +11,7 @@ This licence is intended to protect wxWindows, its developers,
and its users, so that the considerable investment it represents and its users, so that the considerable investment it represents
is not abused. is not abused.
Unlike the wxWindows licence, you as a user are not obliged to Unlike the L-GPL licence, you as a user are not obliged to
distribute wxWindows source code with your products. However, distribute wxWindows source code with your products. However,
you are prevented from selling the code without permission from you are prevented from selling the code without permission from
the authors, or denying others the rights to use or distribute the authors, or denying others the rights to use or distribute

View File

@@ -2,6 +2,19 @@
wxWindows 2.0 for Windows Change Log wxWindows 2.0 for Windows Change Log
------------------------------------ ------------------------------------
Alpha 14, July 31st 1998
------------------------
- Toolbar API has been simplified, and now
wxFrame::GetClientArea returns the available client
area when toolbar, status bar etc. have been accounted for.
wxFrame::CreateToolBar added in line with CreateStatusBar.
- Documentation updates, incl. for wxToolBar.
- New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
- Various additions from other folk, e.g. streams, wxConfig
changes, wxNotebook.
- Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
Alpha 13, July 8th 1998 Alpha 13, July 8th 1998
----------------------- -----------------------

View File

@@ -45,6 +45,7 @@ Update manual.
wxString PARTLY DONE wxString PARTLY DONE
Drag and drop (change API if required, e.g. const). Drag and drop (change API if required, e.g. const).
wxCheckListBox wxCheckListBox
wxAcceleratorTable
wxBaseArray, other arrays wxBaseArray, other arrays
(wxOwnerDrawn) (wxOwnerDrawn)
Document the include file for each class Document the include file for each class

View File

@@ -68,6 +68,10 @@ class WXDLLEXPORT wxComboBox: public wxChoice
virtual long GetLastPosition(void) const ; virtual long GetLastPosition(void) const ;
virtual void Replace(long from, long to, const wxString& value); virtual void Replace(long from, long to, const wxString& value);
virtual void Remove(long from, long to); virtual void Remove(long from, long to);
virtual void SetSelection(int n)
{
wxChoice::SetSelection(n);
}
virtual void SetSelection(long from, long to); virtual void SetSelection(long from, long to);
virtual void SetEditable(bool editable); virtual void SetEditable(bool editable);

View File

@@ -186,7 +186,7 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) :
{ {
"This", "This",
"is a", "is a",
"wonderfull", "wonderful",
"example.", "example.",
}; };

View File

@@ -228,7 +228,7 @@ wxDropSource::DragResult wxDropSource::DoDragDrop(bool bAllowMove)
// Notes : here we just leave this stuff for default implementation // Notes : here we just leave this stuff for default implementation
bool wxDropSource::GiveFeedback(DragResult effect, bool bScrolling) bool wxDropSource::GiveFeedback(DragResult effect, bool bScrolling)
{ {
return false; return FALSE;
} }
#endif //USE_DRAG_AND_DROP #endif //USE_DRAG_AND_DROP

View File

@@ -2002,6 +2002,7 @@ void wxShape::ReadRegions(wxExpr *clause)
void wxShape::Copy(wxShape& copy) void wxShape::Copy(wxShape& copy)
{ {
copy.m_id = m_id;
copy.m_xpos = m_xpos; copy.m_xpos = m_xpos;
copy.m_ypos = m_ypos; copy.m_ypos = m_ypos;
copy.m_pen = m_pen; copy.m_pen = m_pen;