notepad: Make NOTEPAD_DoReplace(All)?() static.

This commit is contained in:
Francois Gouget 2009-05-06 03:34:02 +02:00 committed by Alexandre Julliard
parent 082147d906
commit cdc82702ba

View file

@ -415,7 +415,7 @@ void NOTEPAD_DoFind(FINDREPLACE *fr)
SendMessageW(Globals.hEdit, EM_SETSEL, found - content, found - content + len); SendMessageW(Globals.hEdit, EM_SETSEL, found - content, found - content + len);
} }
void NOTEPAD_DoReplace(FINDREPLACE *fr) static void NOTEPAD_DoReplace(FINDREPLACE *fr)
{ {
LPTSTR content; LPTSTR content;
int len = lstrlen(fr->lpstrFindWhat); int len = lstrlen(fr->lpstrFindWhat);
@ -447,7 +447,7 @@ void NOTEPAD_DoReplace(FINDREPLACE *fr)
NOTEPAD_DoFind(fr); NOTEPAD_DoFind(fr);
} }
void NOTEPAD_DoReplaceAll(FINDREPLACE *fr) static void NOTEPAD_DoReplaceAll(FINDREPLACE *fr)
{ {
LPTSTR content; LPTSTR content;
LPTSTR found; LPTSTR found;