Skip to content

Commit

Permalink
True 64-bit support
Browse files Browse the repository at this point in the history
Reflect latest N++ Scintilla component update
  • Loading branch information
pnedev committed Apr 6, 2022
1 parent 6f0801e commit 6b7bf7f
Show file tree
Hide file tree
Showing 14 changed files with 610 additions and 589 deletions.
4 changes: 2 additions & 2 deletions src/AboutDlg/URLCtrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ LRESULT URLCtrl::runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
// colours, and with an underline text style
case WM_PAINT:
{
DWORD dwStyle = GetWindowLongPtr(hwnd, GWL_STYLE);
DWORD dwDTStyle = DT_SINGLELINE;
LONG_PTR dwStyle = ::GetWindowLongPtr(hwnd, GWL_STYLE);
DWORD dwDTStyle = DT_SINGLELINE;

//Test if centered horizontally or vertically
if (dwStyle & SS_CENTER) dwDTStyle |= DT_CENTER;
Expand Down
Loading

0 comments on commit 6b7bf7f

Please sign in to comment.