Removed lots of wxMotif compile warnings. Copied new install.txt into old

install.txt (wxMotif).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4196 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-10-26 13:33:13 +00:00
parent 37d92fba28
commit af111fc338
41 changed files with 681 additions and 210 deletions

View File

@@ -93,8 +93,8 @@ class wxGridTableBase : public wxObject
virtual wxString GetRowLabelValue( int row );
virtual wxString GetColLabelValue( int col );
virtual void SetRowLabelValue( int row, const wxString& ) {}
virtual void SetColLabelValue( int col, const wxString& ) {}
virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
DECLARE_ABSTRACT_CLASS( wxGridTableBase );
};
@@ -796,7 +796,7 @@ class wxGrid : public wxPanel
SetRowLabelAlignment( align, -1 );
}
int GetLabelAlignment( int orientation, int align )
int GetLabelAlignment( int orientation, int WXUNUSED(align) )
{
int h, v;
if ( orientation == wxHORIZONTAL )
@@ -830,7 +830,7 @@ class wxGrid : public wxPanel
wxFont GetCellTextFont() const
{ return m_defaultCellFont; }
wxFont GetCellTextFont(int row, int col) const
wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
{ return m_defaultCellFont; }
void SetCellTextFont(const wxFont& fnt)