Skip to content

Commit d7037fc

Browse files
committed
touching the release notes and code formatting
1 parent cf547b8 commit d7037fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

NppExec/doc/NppExec/NppExec.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
-----------------
222222
* Glory to Ukraine! Glory to the heroes!
223223
+ added: Color pickers in the Advanced Options and Highlight Output Filters,
224-
thanks to Anders (sredna)
224+
thanks to Anders Kjersem (sredna)
225225
* npp_files updated to Notepad++ 8.5.3
226226
* internal: CChildProcess and CProcessKiller moved to "ChildProcess.cpp"
227227

NppExec/src/NppExec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2424
-----------------
2525
* Glory to Ukraine! Glory to the heroes!
2626
+ added: Color pickers in the Advanced Options and Highlight Output Filters,
27-
thanks to Anders (sredna)
27+
thanks to Anders Kjersem (sredna)
2828
* npp_files updated to Notepad++ 8.5.3
2929
* internal: CChildProcess and CProcessKiller moved to "ChildProcess.cpp"
3030

NppExec/src/PickColorBtn.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2222
#include "PickColorBtn.h"
2323

2424

25-
static inline void PickColorBtn_FillRectColor(HDC hDC, const RECT*pR, COLORREF Clr)
25+
static inline void PickColorBtn_FillRectColor(HDC hDC, const RECT* pR, COLORREF Clr)
2626
{
2727
UINT orgbc = SetBkColor(hDC, Clr);
2828
ExtTextOut(hDC, 0, 0, ETO_OPAQUE, pR, NULL, 0, NULL);
@@ -31,8 +31,8 @@ static inline void PickColorBtn_FillRectColor(HDC hDC, const RECT*pR, COLORREF C
3131

3232
INT_PTR CALLBACK PickColorBtn_HandleMessage(HWND hDlg, UINT Msg, WPARAM WPar, LPARAM LPar, LRESULT *RetVal)
3333
{
34-
DRAWITEMSTRUCT*pDIS = (DRAWITEMSTRUCT*) LPar;
35-
switch(Msg)
34+
DRAWITEMSTRUCT* pDIS = (DRAWITEMSTRUCT*) LPar;
35+
switch (Msg)
3636
{
3737
case WM_DRAWITEM:
3838
if (pDIS->CtlType != ODT_BUTTON)
@@ -125,7 +125,7 @@ HWND PickColorBtn_InitializeTooltips(HWND hDlg, UINT first, UINT last)
125125

126126
void PickColorBtn_HandleTooltipsNotify(HWND, WPARAM, LPARAM lParam)
127127
{
128-
NMTTDISPINFO*pTTDI = (NMTTDISPINFO*) lParam;
128+
NMTTDISPINFO* pTTDI = (NMTTDISPINFO*) lParam;
129129
if ( pTTDI->hdr.code == TTN_GETDISPINFO && (pTTDI->uFlags & TTF_IDISHWND) )
130130
{
131131
COLORREF c = PickColorBtn_GetColor((HWND) pTTDI->hdr.idFrom);

0 commit comments

Comments
 (0)