summaryrefslogtreecommitdiffstats
path: root/editor/inspector_dock.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-02-21 17:44:59 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-02-23 23:48:44 +0100
commit65429f11a6169d17048e99e0d4bddb2f4eaef6d0 (patch)
tree0790ce7042521f8cc30264d1162611811f466cd5 /editor/inspector_dock.h
parent4b6c0560da066135aae9d6512f94770b6db99724 (diff)
downloadredot-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.h6
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);