diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-21 17:44:59 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-23 23:48:44 +0100 |
commit | 65429f11a6169d17048e99e0d4bddb2f4eaef6d0 (patch) | |
tree | 0790ce7042521f8cc30264d1162611811f466cd5 /editor/inspector_dock.h | |
parent | 4b6c0560da066135aae9d6512f94770b6db99724 (diff) | |
download | redot-engine-65429f11a6169d17048e99e0d4bddb2f4eaef6d0.tar.gz |
Signals: Make callbacks non-const, callable_mp can't handle it
Diffstat (limited to 'editor/inspector_dock.h')
-rw-r--r-- | editor/inspector_dock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/inspector_dock.h b/editor/inspector_dock.h index a7da4bef4c..016aee12cf 100644 --- a/editor/inspector_dock.h +++ b/editor/inspector_dock.h @@ -104,13 +104,13 @@ class InspectorDock : public VBoxContainer { void _paste_resource() const; void _warning_pressed(); - void _resource_created() const; - void _resource_selected(const RES &p_res, const String &p_property = "") const; + void _resource_created(); + void _resource_selected(const RES &p_res, const String &p_property = ""); void _edit_forward(); void _edit_back(); void _menu_collapseall(); void _menu_expandall(); - void _select_history(int p_idx) const; + void _select_history(int p_idx); void _prepare_history(); void _property_keyed(const String &p_keyed, const Variant &p_value, bool p_advance); |