forked from SlackBuildsOrg/slackbuilds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextedit.cpp.patch
More file actions
20 lines (18 loc) · 800 Bytes
/
textedit.cpp.patch
File metadata and controls
20 lines (18 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- textedit.cpp 2026-03-05 21:55:00.768394475 +0000
+++ textedit.cpp.new 2026-03-05 21:55:37.520658968 +0000
@@ -2197,7 +2197,7 @@
reset(kHelpKeyword);
if (keyword != nullptr) {
- keywordIterator([=,this](int index, int packageIndex, bool) {
+ keywordIterator([=](int index, int packageIndex, bool) {
bool result = true;
if (strcasecmp(keyword, keyword_help[index].keyword) == 0) {
// found keyword at cursor
@@ -2373,7 +2373,7 @@
int packageIndex = _packageIndex;
bool packageOpen = _packageOpen;
- keywordIterator([=,this](int index, int packageIndex, bool nextPackage) {
+ keywordIterator([=](int index, int packageIndex, bool nextPackage) {
bool result = true;
if (nextPackage) {
const char *package = keyword_help[index].package;