diff options
Diffstat (limited to 'editor/editor_path.h')
-rw-r--r-- | editor/editor_path.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_path.h b/editor/editor_path.h index 539ae7a11d..1e19344d9e 100644 --- a/editor/editor_path.h +++ b/editor/editor_path.h @@ -37,12 +37,12 @@ #include "scene/gui/popup_menu.h" #include "scene/gui/texture_rect.h" -class EditorHistory; +class EditorSelectionHistory; class EditorPath : public Button { GDCLASS(EditorPath, Button); - EditorHistory *history; + EditorSelectionHistory *history; TextureRect *current_object_icon; Label *current_object_label; @@ -65,7 +65,7 @@ public: void clear_path(); void enable_path(); - EditorPath(EditorHistory *p_history); + EditorPath(EditorSelectionHistory *p_history); }; #endif // EDITOR_PATH_H |