# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/fxscintilla/hotfix-cxx.patch # Copyright (C) 2026 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- fxscintilla-2.28.0/fox/ScintillaFOX.cxx.vanilla 2026-04-19 02:24:20.285172689 +0300 +++ fxscintilla-2.28.0/fox/ScintillaFOX.cxx 2026-04-19 02:25:21.235848427 +0300 @@ -1222,7 +1222,7 @@ FXDragAction action; FXint pos; // Scroll into view - if(startAutoScroll(ev, TRUE)) return 1; + if(startAutoScroll(ev, true)) return 1; // Handled elsewhere if(FXScrollArea::onDNDMotion(sender,sel,ptr)) return 1; --- fxscintilla-2.28.0/fox/PlatFOX.cxx.vanilla 2026-04-19 02:22:34.168327766 +0300 +++ fxscintilla-2.28.0/fox/PlatFOX.cxx 2026-04-19 02:22:50.399283996 +0300 @@ -924,7 +924,7 @@ static int sListSortFunction(const FXListItem* item1, const FXListItem* item2) { - return compare(item1->getText(), item2->getText()); + return FXString::compare(item1->getText(), item2->getText()); } class PopupListBox : public FXPopup