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