Applied patch [ 796736 ] unicode and various warnings fixes for configtool util

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-09-11 09:29:25 +00:00
parent dc9b3bf7ba
commit 69da0d9946
11 changed files with 110 additions and 85 deletions

View File

@@ -163,7 +163,7 @@ void ctPropertyEditor::ClearEditor()
}
/// Handles detailed editing event.
void ctPropertyEditor::OnEditDetails(wxCommandEvent& event)
void ctPropertyEditor::OnEditDetails(wxCommandEvent& WXUNUSED(event))
{
wxWindow* parentFrame = this;
while (parentFrame && !parentFrame->IsKindOf(CLASSINFO(wxFrame)))
@@ -435,7 +435,7 @@ ctProperty* ctPropertyEditor::FindProperty(int row)
}
/// Edit the details of this cell appropriately.
bool ctPropertyEditor::EditDetails(wxWindow* parent)
bool ctPropertyEditor::EditDetails(wxWindow* WXUNUSED(parent))
{
if (CanEditDetails())
{
@@ -572,7 +572,7 @@ void ctPropertyEditor::OnChangeCell(wxGridEvent& event)
}
/// Double-click to show specialised editor.
void ctPropertyEditor::OnDClickCell(wxGridEvent& event)
void ctPropertyEditor::OnDClickCell(wxGridEvent& WXUNUSED(event))
{
wxWindow* parentFrame = this;
while (parentFrame && !parentFrame->IsKindOf(CLASSINFO(wxFrame)))