From cd94bfc187d6a716f00d218e514409d8e65603c4 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 7 Oct 2020 17:15:48 +0200 Subject: Matrix: fix posting messages with non-ascii characters --- include/Entry.hpp | 2 +- include/SearchBar.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/Entry.hpp b/include/Entry.hpp index 2ef6b04..23535e4 100644 --- a/include/Entry.hpp +++ b/include/Entry.hpp @@ -13,7 +13,7 @@ namespace sf { namespace QuickMedia { // Return true to clear the text - using OnEntrySubmit = std::function; + using OnEntrySubmit = std::function; class Entry { public: diff --git a/include/SearchBar.hpp b/include/SearchBar.hpp index 8a1a8a0..e5245be 100644 --- a/include/SearchBar.hpp +++ b/include/SearchBar.hpp @@ -14,11 +14,11 @@ namespace sf { } namespace QuickMedia { - using TextUpdateCallback = std::function; + using TextUpdateCallback = std::function; // Return true to consume the search (clear the search field) - using TextSubmitCallback = std::function; + using TextSubmitCallback = std::function; using TextBeginTypingCallback = std::function; - using AutocompleteRequestCallback = std::function; + using AutocompleteRequestCallback = std::function; class SearchBar { public: -- cgit v1.2.3