You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Fix return type for EditorResourcePreview::check_for_invalidation
This commit is contained in:
@@ -336,7 +336,7 @@ void EditorResourcePreview::_bind_methods() {
|
||||
ADD_SIGNAL(MethodInfo("preview_invalidated",PropertyInfo(Variant::STRING,"path")));
|
||||
}
|
||||
|
||||
bool EditorResourcePreview::check_for_invalidation(const String& p_path) {
|
||||
void EditorResourcePreview::check_for_invalidation(const String& p_path) {
|
||||
|
||||
preview_mutex->lock();
|
||||
|
||||
|
||||
@@ -121,7 +121,7 @@ public:
|
||||
void queue_edited_resource_preview(const Ref<Resource>& p_path, Object* p_receiver, const StringName& p_receiver_func, const Variant& p_userdata);
|
||||
|
||||
void add_preview_generator(const Ref<EditorResourcePreviewGenerator>& p_generator);
|
||||
bool check_for_invalidation(const String& p_path);
|
||||
void check_for_invalidation(const String& p_path);
|
||||
|
||||
EditorResourcePreview();
|
||||
~EditorResourcePreview();
|
||||
|
||||
Reference in New Issue
Block a user