summaryrefslogtreecommitdiff
path: root/tools/editor/reparent_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/editor/reparent_dialog.h')
-rw-r--r--tools/editor/reparent_dialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/editor/reparent_dialog.h b/tools/editor/reparent_dialog.h
index 296102e4b9..1c0fbd2459 100644
--- a/tools/editor/reparent_dialog.h
+++ b/tools/editor/reparent_dialog.h
@@ -39,30 +39,30 @@
@author Juan Linietsky <reduzio@gmail.com>
*/
class ReparentDialog : public ConfirmationDialog {
-
+
OBJ_TYPE( ReparentDialog, ConfirmationDialog );
-
+
SceneTreeEditor *tree;
CheckBox *keep_transform;
-
+
void update_tree();
void _reparent();
void _cancel();
protected:
-
+
void _notification(int p_what);
static void _bind_methods();
public:
-
+
void set_current(const Set<Node*>& p_selection);
String get_selected_type();
-
- ReparentDialog();
+
+ ReparentDialog();
~ReparentDialog();
-
+
};
#endif