490927c30b
OpenBoard is an open source cross-platform interactive whiteboard application designed primarily for use in schools. It was originally forked from Open-Sankore, which was itself based on Uniboard. It supports digital pens, virtual keyboards, PDF import, web browsing, video playback, and screen annotations. WWW: https://www.openboard.org/ https://github.com/OpenBoard-org/OpenBoard/ Patches reported to upstream: https://github.com/OpenBoard-org/OpenBoard/pull/1489 https://github.com/OpenBoard-org/OpenBoard/pull/1490 PR: 295104 Sponsored by: UNIS Labs
12 lines
493 B
C++
12 lines
493 B
C++
--- src/web/UBEmbedController.cpp.orig 2026-03-23 11:30:46 UTC
|
|
+++ src/web/UBEmbedController.cpp
|
|
@@ -150,7 +150,7 @@ void UBEmbedController::textChanged(const QString& new
|
|
static const QRegularExpression regExp("[<>:\"/\\\\|?*]");
|
|
#endif
|
|
|
|
-#ifdef Q_OS_LINUX // Defined on X11.
|
|
+#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) // Defined on X11/FreeBSD.
|
|
QString illegalCharList(" < > : \" / \\ | ? * ");
|
|
static const QRegularExpression regExp("[<>:\"/\\\\|?*]");
|
|
#endif
|