Skip to content

Commit

Permalink
Fix for FindReplaceData Issue trying to get the replace string
Browse files Browse the repository at this point in the history
Ignore-this: 4c30d412c11b6155a12e4ba4fe27cabf

darcs-hash:20090930204233-b4bb7-8978798f4b549a85a0136d43765414e2f4241fcd.gz
  • Loading branch information
Fernando Benavides committed Sep 30, 2009
1 parent 9793e22 commit 3e88980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wxc/src/eljfindrepldlg.cpp
Expand Up @@ -30,7 +30,7 @@ EWXWEXPORT(wxString*,wxFindReplaceData_GetFindString)(void* _obj)
EWXWEXPORT(wxString*,wxFindReplaceData_GetReplaceString)(void* _obj)
{
wxString *result = new wxString();
*result = ((wxFindReplaceData*)_obj)->GetFindString();
*result = ((wxFindReplaceData*)_obj)->GetReplaceString();
return result;
}

Expand Down

0 comments on commit 3e88980

Please sign in to comment.