/**
@class wxFindDialogEvent
- @wxheader{fdrepdlg.h}
- wxFindReplaceDialog events
+ wxFindReplaceDialog events.
@beginEventTable{wxFindDialogEvent}
@event{EVT_FIND(id, func)}
/**
@class wxFindReplaceData
- @wxheader{fdrepdlg.h}
wxFindReplaceData holds the data for wxFindReplaceDialog.
dialog and calling them has no effect later.
@library{wxcore}
- @category{data}
+ @category{cmndlg,data}
*/
class wxFindReplaceData : public wxObject
{
/**
Get the string to find.
*/
- const wxString GetFindString();
+ const wxString& GetFindString();
/**
Get the combination of @c wxFindReplaceFlags values.
/**
Get the replacement string.
*/
- const wxString GetReplaceString();
+ const wxString& GetReplaceString();
/**
Set the string to find (used as initial value by the dialog).
/**
@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).
/**
Destructor.
*/
- ~wxFindReplaceDialog();
+ virtual ~wxFindReplaceDialog();
/**
Creates the dialog; use wxWindow::Show to show it on screen.