]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/fdrepdlg.h
fixing wrong version commit
[wxWidgets.git] / interface / wx / fdrepdlg.h
index e704d00c4e80ae4df015f1eea314cf7335229057..a396bab8f8fbb7cf90919a9553adf43627f2c0e8 100644 (file)
@@ -44,9 +44,8 @@ enum wxFindReplaceDialogStyles
 
 /**
     @class wxFindDialogEvent
-    @wxheader{fdrepdlg.h}
 
-    wxFindReplaceDialog events
+    wxFindReplaceDialog events.
 
     @beginEventTable{wxFindDialogEvent}
     @event{EVT_FIND(id, func)}
@@ -100,7 +99,6 @@ public:
 
 /**
     @class wxFindReplaceData
-    @wxheader{fdrepdlg.h}
 
     wxFindReplaceData holds the data for wxFindReplaceDialog.
 
@@ -113,7 +111,7 @@ public:
     dialog and calling them has no effect later.
 
     @library{wxcore}
-    @category{data}
+    @category{cmndlg,data}
 */
 class wxFindReplaceData : public wxObject
 {
@@ -126,7 +124,7 @@ public:
     /**
         Get the string to find.
     */
-    const wxString GetFindString();
+    const wxString& GetFindString();
 
     /**
         Get the combination of @c wxFindReplaceFlags values.
@@ -136,7 +134,7 @@ public:
     /**
         Get the replacement string.
     */
-    const wxString GetReplaceString();
+    const wxString& GetReplaceString();
 
     /**
         Set the string to find (used as initial value by the dialog).
@@ -158,7 +156,6 @@ public:
 
 /**
     @class wxFindReplaceDialog
-    @wxheader{fdrepdlg.h}
 
     wxFindReplaceDialog is a standard modeless dialog which is used to allow the
     user to search for some text (and possibly replace it with something else).
@@ -192,7 +189,7 @@ public:
     /**
         Destructor.
     */
-    ~wxFindReplaceDialog();
+    virtual ~wxFindReplaceDialog();
 
     /**
         Creates the dialog; use wxWindow::Show to show it on screen.