Commit 8e3b3c7
committed
Fix build error due to revector update
1 parent d5d1a0e commit 8e3b3c7
File tree
13 files changed
+186
-186
lines changed- 3rd
- src
- feature
- gui
- player
13 files changed
+186
-186
lines changed- CMakeLists.txt+1-1
- examples/button/main.cpp+1-1
- examples/collapse_containers/main.cpp+1-1
- examples/container_layout/main.cpp+1-1
- examples/file_selection/main.cpp+1-1
- examples/i18n/main.cpp+1-1
- examples/label_alignment/main.cpp+1-1
- examples/multiple_window/main.cpp+1-1
- examples/popup_menu/main.cpp+1-1
- examples/progress_bar/main.cpp+1-1
- examples/scrolling/main.cpp+1-1
- examples/tab/main.cpp+1-1
- examples/texture_rect/main.cpp+1-1
- examples/tree/main.cpp+1-1
- src/app.cpp+6-6
- src/app.h+3-6
- src/common/any_callable.h+1-1
- src/common/geometry.h+3-6
- src/common/load_file.h+3-6
- src/common/utils.h+3-6
- src/nodes/file_dialog.cpp+4-4
- src/nodes/file_dialog.h+3-6
- src/nodes/node.cpp+2-2
- src/nodes/node.h+3-6
- src/nodes/scene_tree.cpp+3-3
- src/nodes/scene_tree.h+3-6
- src/nodes/sub_window.cpp+2-2
- src/nodes/sub_window.h+3-6
- src/nodes/timer.cpp+2-2
- src/nodes/timer.h+3-6
- src/nodes/ui/button.cpp+3-3
- src/nodes/ui/button.h+3-6
- src/nodes/ui/check_button.cpp+2-2
- src/nodes/ui/check_button.h+3-6
- src/nodes/ui/container/box_container.cpp+2-2
- src/nodes/ui/container/box_container.h+3-6
- src/nodes/ui/container/collapse_container.cpp+2-2
- src/nodes/ui/container/collapse_container.h+2-2
- src/nodes/ui/container/container.cpp+2-2
- src/nodes/ui/container/container.h+3-6
- src/nodes/ui/container/grid_container.cpp+2-2
- src/nodes/ui/container/grid_container.h+3-6
- src/nodes/ui/container/margin_container.cpp+2-2
- src/nodes/ui/container/margin_container.h+3-6
- src/nodes/ui/container/scroll_container.cpp+2-2
- src/nodes/ui/container/scroll_container.h+3-6
- src/nodes/ui/container/tab_container.cpp+2-2
- src/nodes/ui/container/tab_container.h+3-6
- src/nodes/ui/label.cpp+2-2
- src/nodes/ui/label.h+3-6
- src/nodes/ui/menu_button.cpp+2-2
- src/nodes/ui/menu_button.h+3-6
- src/nodes/ui/node_ui.cpp+2-2
- src/nodes/ui/node_ui.h+3-6
- src/nodes/ui/panel.cpp+2-2
- src/nodes/ui/panel.h+3-6
- src/nodes/ui/popup_menu.cpp+4-4
- src/nodes/ui/popup_menu.h+3-6
- src/nodes/ui/progress_bar.cpp+2-2
- src/nodes/ui/progress_bar.h+3-6
- src/nodes/ui/spin_box.cpp+2-2
- src/nodes/ui/spin_box.h+3-6
- src/nodes/ui/text_edit.cpp+3-3
- src/nodes/ui/text_edit.h+3-6
- src/nodes/ui/texture_rect.cpp+5-5
- src/nodes/ui/texture_rect.h+3-6
- src/nodes/ui/tree.cpp+4-4
- src/nodes/ui/tree.h+3-6
- src/render/base.h+1-4
- src/render/blit.cpp+2-2
- src/render/blit.h+2-2
- src/resources/default_resource.h+3-6
- src/resources/font.cpp+9-9
- src/resources/font.h+3-6
- src/resources/image.cpp+2-2
- src/resources/image.h+3-6
- src/resources/opensans_regular_ttf.h+1-1
- src/resources/raster_image.cpp+3-3
- src/resources/raster_image.h+3-6
- src/resources/render_image.h+3-6
- src/resources/resource.h+3-6
- src/resources/resource_manager.h+3-6
- src/resources/style_box.h+3-6
- src/resources/theme.h+2-2
- src/resources/vector_image.cpp+2-2
- src/resources/vector_image.h+3-6
- src/servers/debug_server.h+2-5
- src/servers/engine.cpp+3-3
- src/servers/engine.h+3-6
- src/servers/input_server.cpp+2-2
- src/servers/input_server.h+3-6
- src/servers/render_server.h+3-6
- src/servers/text_server.cpp+2-2
- src/servers/text_server.h+3-6
- src/servers/translation_server.cpp+2-2
- src/servers/translation_server.h+3-3
- src/servers/vector_server.cpp+3-3
- src/servers/vector_server.h+3-6
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | | - | |
| 77 | + | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
88 | | - | |
| 88 | + | |
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
| 101 | + | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| |||
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
114 | | - | |
115 | | - | |
| 114 | + | |
| 115 | + | |
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
125 | | - | |
| 125 | + | |
126 | 126 | | |
127 | 127 | | |
128 | | - | |
| 128 | + | |
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | | - | |
| 159 | + | |
160 | 160 | | |
161 | 161 | | |
162 | 162 | | |
163 | | - | |
| 163 | + | |
164 | 164 | | |
165 | | - | |
| 165 | + | |
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| |||
189 | 189 | | |
190 | 190 | | |
191 | 191 | | |
192 | | - | |
| 192 | + | |
193 | 193 | | |
194 | 194 | | |
195 | | - | |
| 195 | + | |
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
199 | | - | |
| 199 | + | |
200 | 200 | | |
201 | 201 | | |
202 | 202 | | |
203 | | - | |
| 203 | + | |
204 | 204 | | |
205 | 205 | | |
206 | | - | |
| 206 | + | |
207 | 207 | | |
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
211 | 211 | | |
212 | | - | |
| 212 | + | |
213 | 213 | | |
214 | 214 | | |
215 | 215 | | |
| |||
227 | 227 | | |
228 | 228 | | |
229 | 229 | | |
230 | | - | |
| 230 | + | |
231 | 231 | | |
232 | | - | |
| 232 | + | |
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
| |||
265 | 265 | | |
266 | 266 | | |
267 | 267 | | |
268 | | - | |
| 268 | + | |
269 | 269 | | |
270 | 270 | | |
271 | 271 | | |
272 | 272 | | |
273 | | - | |
| 273 | + | |
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
| 277 | + | |
278 | 278 | | |
279 | 279 | | |
280 | | - | |
| 280 | + | |
281 | 281 | | |
282 | 282 | | |
283 | 283 | | |
284 | | - | |
| 284 | + | |
285 | 285 | | |
286 | 286 | | |
287 | 287 | | |
288 | | - | |
| 288 | + | |
289 | 289 | | |
290 | 290 | | |
291 | 291 | | |
292 | | - | |
| 292 | + | |
293 | 293 | | |
294 | | - | |
| 294 | + | |
295 | 295 | | |
296 | 296 | | |
297 | 297 | | |
| |||
320 | 320 | | |
321 | 321 | | |
322 | 322 | | |
323 | | - | |
324 | | - | |
| 323 | + | |
| 324 | + | |
325 | 325 | | |
326 | | - | |
| 326 | + | |
327 | 327 | | |
328 | 328 | | |
329 | | - | |
| 329 | + | |
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | | - | |
23 | | - | |
| 22 | + | |
| 23 | + | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
0 commit comments