some class renames

TextureFrame -> TextureRect
Patch9Frame -> NinePatchRect
ColorFrame -> ColorRect
This commit is contained in:
Juan Linietsky
2017-01-12 18:27:27 -03:00
parent a971186c26
commit da477b76a9
43 changed files with 119 additions and 119 deletions

View File

@ -3,8 +3,8 @@
#include "scene/gui/control.h"
class ColorFrame : public Control {
GDCLASS(ColorFrame,Control)
class ColorRect : public Control {
GDCLASS(ColorRect,Control)
Color color;
protected:
@ -16,7 +16,7 @@ public:
void set_frame_color(const Color& p_color);
Color get_frame_color() const;
ColorFrame();
ColorRect();
};
#endif // COLORRECT_H