Commit cdc82702 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 082147d9
...@@ -415,7 +415,7 @@ void NOTEPAD_DoFind(FINDREPLACE *fr) ...@@ -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) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment