mirror of
https://git.freebsd.org/ports.git
synced 2025-05-08 03:40:46 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
20 lines
931 B
C++
20 lines
931 B
C++
--- ui/views/controls/textfield/textfield.h.orig 2025-03-24 20:50:14 UTC
|
|
+++ ui/views/controls/textfield/textfield.h
|
|
@@ -47,7 +47,7 @@
|
|
#include "ui/views/view_observer.h"
|
|
#include "ui/views/word_lookup_client.h"
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
#include <vector>
|
|
#endif
|
|
|
|
@@ -474,7 +474,7 @@ class VIEWS_EXPORT Textfield : public View,
|
|
// Set whether the text should be used to improve typing suggestions.
|
|
void SetShouldDoLearning(bool value) { should_do_learning_ = value; }
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
bool SetCompositionFromExistingText(
|
|
const gfx::Range& range,
|
|
const std::vector<ui::ImeTextSpan>& ui_ime_text_spans) override;
|