[NOTEPAD] Reduce lines in and around comments (#5131)

Reduce lines. CORE-18837
This commit is contained in:
Katayama Hirofumi MZ 2023-03-09 03:11:57 +09:00 committed by GitHub
parent 8e0c920fd2
commit 9ac20a7fe2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 18 deletions

View file

@ -1417,7 +1417,6 @@ VOID DIALOG_HelpAboutNotepad(VOID)
}
/***********************************************************************
*
* DIALOG_FilePageSetup
*/
VOID DIALOG_FilePageSetup(void)
@ -1443,10 +1442,8 @@ VOID DIALOG_FilePageSetup(void)
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* DIALOG_PAGESETUP_Hook
*/
static UINT_PTR CALLBACK DIALOG_PAGESETUP_Hook(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)

View file

@ -20,7 +20,6 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "notepad.h"
@ -41,7 +40,6 @@ VOID NOTEPAD_EnableSearchMenu()
}
/***********************************************************************
*
* SetFileName
*
* Sets Global File Name.
@ -57,7 +55,6 @@ VOID SetFileName(LPCTSTR szFileName)
}
/***********************************************************************
*
* NOTEPAD_MenuCommand
*
* All handling of main menu events
@ -104,10 +101,8 @@ static int NOTEPAD_MenuCommand(WPARAM wParam)
}
/***********************************************************************
*
* NOTEPAD_FindTextAt
*/
static BOOL
NOTEPAD_FindTextAt(FINDREPLACE *pFindReplace, LPCTSTR pszText, INT iTextLength, DWORD dwPosition)
{
@ -145,10 +140,8 @@ NOTEPAD_FindTextAt(FINDREPLACE *pFindReplace, LPCTSTR pszText, INT iTextLength,
}
/***********************************************************************
*
* NOTEPAD_FindNext
*/
BOOL NOTEPAD_FindNext(FINDREPLACE *pFindReplace, BOOL bReplace, BOOL bShowAlert)
{
int iTextLength, iTargetLength;
@ -235,10 +228,8 @@ BOOL NOTEPAD_FindNext(FINDREPLACE *pFindReplace, BOOL bReplace, BOOL bShowAlert)
}
/***********************************************************************
*
* NOTEPAD_ReplaceAll
*/
static VOID NOTEPAD_ReplaceAll(FINDREPLACE *pFindReplace)
{
BOOL bShowAlert = TRUE;
@ -252,10 +243,8 @@ static VOID NOTEPAD_ReplaceAll(FINDREPLACE *pFindReplace)
}
/***********************************************************************
*
* NOTEPAD_FindTerm
*/
static VOID NOTEPAD_FindTerm(VOID)
{
Globals.hFindReplaceDlg = NULL;
@ -341,7 +330,6 @@ LRESULT CALLBACK EDIT_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
}
/***********************************************************************
*
* NOTEPAD_WndProc
*/
static LRESULT
@ -557,7 +545,6 @@ static BOOL HandleCommandLine(LPTSTR cmdline)
}
/***********************************************************************
*
* WinMain
*/
int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE prev, LPTSTR cmdline, int show)

View file

@ -111,7 +111,6 @@ static BOOL QueryString(HKEY hKey, LPCTSTR pszValueName, LPTSTR pszResult, DWORD
}
/***********************************************************************
*
* NOTEPAD_LoadSettingsFromRegistry
*
* Load settings from registry HKCU\Software\Microsoft\Notepad.
@ -231,7 +230,6 @@ static BOOL SaveString(HKEY hKey, LPCTSTR pszValueNameT, LPCTSTR pszValue)
}
/***********************************************************************
*
* NOTEPAD_SaveSettingsToRegistry
*
* Save settings to registry HKCU\Software\Microsoft\Notepad.