Skip to content

Commit 60c50e6

Browse files
committed
Random cleanups
1 parent efc12cd commit 60c50e6

8 files changed

+17
-11
lines changed

docs_gen/ExternalPluginSupport.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Plugin developers are able to execute Lua code from their own plugins. Notepad++
77

88
Information needed for LuaScript is defined in the custom struct defined [here](https://github.com/dail8859/LuaScript/blob/master/src/NppLuaScript.h).
99

10-
- `structVersion` - (reserved for future use) must always be `1`
11-
- `flags` - (reserved for future use) must always be `0`
12-
- `script` - UTF-8 encoded string. The meaning of this is dependent on the command executed.
10+
- `structVersion` - (reserved for future use) must always be `1`
11+
- `flags` - (reserved for future use) must always be `0`
12+
- `script` - UTF-8 encoded string. The meaning of this is dependent on the command executed.
1313

1414
<br/>
1515

docs_gen/ldoc.ltp

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
</div> <!-- id="content" -->
302302
</div> <!-- id="main" -->
303303
<div id="about">
304-
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
304+
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc $(ldoc.version)</a></i>
305305
</div> <!-- id="about" -->
306306
</div> <!-- id="container" -->
307307
<footer>

examples/LuaAutoIndent.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
local decreaseIndentPattern = [[^\s*(elseif|else|end|\})\s*$]]
44
local increaseIndentPattern = [[^\s*(else|elseif|for|(local\s+)?function|if|repeat|until|while)\b((?!end).)*$|\{\s*$]]
55

6-
do_increase = false
6+
local do_increase = false
77

88
-- Get the start and end position of a specific line number
99
local function getLinePositions(line_num)

scripts/IFaceTableGen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def GetScriptableInterface(f):
172172
return (constants, funclist, proplist)
173173

174174

175-
def printIFaceTableCXXFile(faceAndIDs):
175+
def printIFaceTableCppFile(faceAndIDs):
176176
out = []
177177
f, ids = faceAndIDs
178178
(constants, functions, properties) = GetScriptableInterface(f)
@@ -383,7 +383,7 @@ def RegenerateAll():
383383
f = Face.Face()
384384
f.ReadFromFile("Scintilla.iface")
385385
#idsInOrder = idsFromDocumentation(srcRoot + "/scintilla/doc/ScintillaDoc.html")
386-
Regenerate("../src/SciIFaceTable.cpp", "//", printIFaceTableCXXFile([f, []]))
386+
Regenerate("../src/SciIFaceTable.cpp", "//", printIFaceTableCppFile([f, []]))
387387
#Regenerate(srcRoot + "/scite/doc/PaneAPI.html", "<!--", printIFaceTableHTMLFile([f, menuIDs, idsInOrder]))
388388

389389
if __name__=="__main__":

src/Dialogs/AboutDialog.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@
2323
#include "Hyperlinks.h"
2424
#include "Version.h"
2525

26+
#ifdef _WIN64
27+
#define BITNESS TEXT("(64 bit)")
28+
#else
29+
#define BITNESS TEXT("(32 bit)")
30+
#endif
31+
2632
INT_PTR CALLBACK abtDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) {
2733
switch(uMsg) {
2834
case WM_INITDIALOG:
2935
ConvertStaticToHyperlink(hwndDlg, IDC_GITHUB);
3036
ConvertStaticToHyperlink(hwndDlg, IDC_README);
31-
SetWindowText(GetDlgItem(hwndDlg, IDC_VERSION), TEXT("LuaScript v") VERSION_TEXT TEXT(" ") VERSION_STAGE);
37+
SetWindowText(GetDlgItem(hwndDlg, IDC_VERSION), TEXT("LuaScript v") VERSION_TEXT TEXT(" ") VERSION_STAGE TEXT(" ") BITNESS);
3238
return true;
3339
case WM_COMMAND:
3440
switch(LOWORD(wParam)) {

src/Dialogs/AboutDialog.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
void ShowAboutDialog(HINSTANCE hInstance, const wchar_t *lpTemplateName, HWND hWndParent);
2525

26-
#endif
26+
#endif

src/Dialogs/Hyperlinks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ BOOL ConvertStaticToHyperlink(HWND hwndCtl)
122122
HWND hwndParent = GetParent(hwndCtl);
123123
if (NULL != hwndParent)
124124
{
125-
WNDPROC pfnOrigProc = (WNDPROC)GetWindowLongPtr(hwndParent, GWLP_WNDPROC);
125+
WNDPROC pfnOrigProc = (WNDPROC) GetWindowLongPtr(hwndParent, GWLP_WNDPROC);
126126
if (pfnOrigProc != _HyperlinkParentProc)
127127
{
128128
SetProp(hwndParent, PROP_ORIGINAL_PROC, (HANDLE) pfnOrigProc);

src/Dialogs/resource.rc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FONT 8, "MS Shell Dlg", 0, 0, 0x1
2020
{
2121
PUSHBUTTON "Close", IDOK, 86, 109, 50, 14
2222
GROUPBOX "", IDC_VERSION, 10, 9, 201, 93, BS_CENTER
23-
LTEXT "Author : Justin Dailey <[email protected]>", IDC_STATIC, 30, 26, 180, 8
23+
LTEXT "Author: Justin Dailey <[email protected]>", IDC_STATIC, 30, 26, 180, 8
2424
LTEXT "The LuaScript code is hosted on", IDC_STATIC, 30, 43, 180, 8
2525
LTEXT "GitHub", IDC_GITHUB, 133, 43, 31, 8, SS_LEFT | SS_NOTIFY, WS_EX_LEFT
2626
LTEXT "For detailed usage, see the ", IDC_STATIC, 30, 62, 180, 8

0 commit comments

Comments
 (0)