blob: 4b0c7190e15083d844048137435e3172f7707fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
diff --git a/src/app/commands/cmd_run_command.cpp b/src/app/commands/cmd_run_command.cpp
index 97515c2..17ecebe 100644
--- a/src/app/commands/cmd_run_command.cpp
+++ b/src/app/commands/cmd_run_command.cpp
@@ -30,6 +30,7 @@
#include "ui/label.h"
#include "ui/message.h"
#include "ui/system.h"
+#include "fmt/format.h"
#ifdef ENABLE_SCRIPTING
#include "app/script/engine.h"
diff --git a/src/app/commands/cmd_set_color_selector.cpp b/src/app/commands/cmd_set_color_selector.cpp
index b76b44b..4b4fa44 100644
--- a/src/app/commands/cmd_set_color_selector.cpp
+++ b/src/app/commands/cmd_set_color_selector.cpp
@@ -15,6 +15,7 @@
#include "app/context.h"
#include "app/i18n/strings.h"
#include "app/ui/color_bar.h"
+#include "fmt/format.h"
namespace app {
diff --git a/src/app/i18n/strings.cpp b/src/app/i18n/strings.cpp
index 59aab94..8776802 100644
--- a/src/app/i18n/strings.cpp
+++ b/src/app/i18n/strings.cpp
@@ -20,6 +20,7 @@
#include "base/debug.h"
#include "base/fs.h"
#include "cfg/cfg.h"
+#include "fmt/format.h"
#include <algorithm>
diff --git a/src/app/i18n/strings.h b/src/app/i18n/strings.h
index dc4540f..b212090 100644
--- a/src/app/i18n/strings.h
+++ b/src/app/i18n/strings.h
@@ -11,6 +11,7 @@
#include "app/i18n/lang_info.h"
#include "fmt/core.h"
+#include "fmt/format.h"
#include "obs/signal.h"
#include "strings.ini.h"
diff --git a/src/app/ui/palettes_listbox.cpp b/src/app/ui/palettes_listbox.cpp
index e40f9fb..db50a40 100644
--- a/src/app/ui/palettes_listbox.cpp
+++ b/src/app/ui/palettes_listbox.cpp
@@ -34,6 +34,7 @@
#include "ui/message.h"
#include "ui/size_hint_event.h"
#include "ui/tooltips.h"
+#include "fmt/format.h"
namespace app {
diff --git a/src/app/ui/resources_listbox.cpp b/src/app/ui/resources_listbox.cpp
index 318d8ce..fc0f056 100644
--- a/src/app/ui/resources_listbox.cpp
+++ b/src/app/ui/resources_listbox.cpp
@@ -20,6 +20,7 @@
#include "ui/paint_event.h"
#include "ui/size_hint_event.h"
#include "ui/view.h"
+#include "fmt/format.h"
namespace app {
|