summaryrefslogtreecommitdiffstats
path: root/scene/gui/reference_frame.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-14 10:52:54 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-14 10:52:54 +0100
commit7b9f2d9929d0e8516d42379962533df823c7c550 (patch)
treeb7901c8146209506889d18f6bb01d65f7a8c7a07 /scene/gui/reference_frame.cpp
parent6c512b88c22cb9615a03deb000447e97c20c7080 (diff)
downloadredot-engine-7b9f2d9929d0e8516d42379962533df823c7c550.tar.gz
Finish renaming *Frame GUI classes to *Rect
ReferenceFrame had been overlooked, and the cpp files still used the old names. Also ripgrep'ed it all to find some forgotten references.
Diffstat (limited to 'scene/gui/reference_frame.cpp')
-rw-r--r--scene/gui/reference_frame.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/scene/gui/reference_frame.cpp b/scene/gui/reference_frame.cpp
deleted file mode 100644
index 37bc3ae6fb..0000000000
--- a/scene/gui/reference_frame.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/*************************************************************************/
-/* reference_frame.cpp */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* http://www.godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
-/* */
-/* Permission is hereby granted, free of charge, to any person obtaining */
-/* a copy of this software and associated documentation files (the */
-/* "Software"), to deal in the Software without restriction, including */
-/* without limitation the rights to use, copy, modify, merge, publish, */
-/* distribute, sublicense, and/or sell copies of the Software, and to */
-/* permit persons to whom the Software is furnished to do so, subject to */
-/* the following conditions: */
-/* */
-/* The above copyright notice and this permission notice shall be */
-/* included in all copies or substantial portions of the Software. */
-/* */
-/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
-/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
-/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
-/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
-/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
-/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
-/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
-/*************************************************************************/
-#include "reference_frame.h"
-
-void ReferenceFrame::_notification(int p_what) {
-
- if (p_what==NOTIFICATION_DRAW) {
-
- if (!is_inside_tree())
- return;
- if (get_tree()->is_editor_hint())
- draw_style_box(get_stylebox("border"),Rect2(Point2(),get_size())) ;
- }
-}
-
-ReferenceFrame::ReferenceFrame()
-{
-}