]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/fdrepdlg.cpp
Use the size value passed to the ctor to set the window's minimum size.
[wxWidgets.git] / src / generic / fdrepdlg.cpp
index a5a0040077c13e8e9bb2d3bed64ec9b57c919ec8..df9998ed2747cfa254639c23945b0a077c42941d 100644 (file)
@@ -6,14 +6,14 @@
 // Created:     05/25/01
 // RCS-ID:
 // Copyright:   (c) wxWindows team
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 // declarations
 // ============================================================================
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "genericfdrepdlg.h"
 #endif
 
 // constants
 // ----------------------------------------------------------------------------
 
-enum
-{
-    wxID_REPLACE = 5890,
-    wxID_REPLACE_ALL
-};
-
 // ============================================================================
 // implementation
 // ============================================================================
@@ -251,22 +245,22 @@ void wxGenericFindReplaceDialog::SendEvent(const wxEventType& evtType)
 // event handlers
 // ----------------------------------------------------------------------------
 
-void wxGenericFindReplaceDialog::OnFind(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnFind(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_NEXT);
 }
 
-void wxGenericFindReplaceDialog::OnReplace(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnReplace(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_REPLACE);
 }
 
-void wxGenericFindReplaceDialog::OnReplaceAll(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnReplaceAll(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_REPLACE_ALL);
 }
 
-void wxGenericFindReplaceDialog::OnCancel(wxCommandEvent& event)
+void wxGenericFindReplaceDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
 {
     SendEvent(wxEVT_COMMAND_FIND_CLOSE);