summaryrefslogtreecommitdiffstats
path: root/scene/gui/popup.h
diff options
context:
space:
mode:
authorHubert Jarosz <marqin.pl@gmail.com>2016-03-09 00:00:52 +0100
committerHubert Jarosz <marqin.pl@gmail.com>2016-03-09 00:00:52 +0100
commit4a4f2479146aa33e235ed57cde311efda68d3c8f (patch)
treecf91f2869ff8f058c6682569fb31e22e5ee736ad /scene/gui/popup.h
parent1dad6eca812e5c2e313b54265114de8a1d73d999 (diff)
downloadredot-engine-4a4f2479146aa33e235ed57cde311efda68d3c8f.tar.gz
remove trailing whitespace
Diffstat (limited to 'scene/gui/popup.h')
-rw-r--r--scene/gui/popup.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/scene/gui/popup.h b/scene/gui/popup.h
index 9c66e6d7bd..8afcdc01db 100644
--- a/scene/gui/popup.h
+++ b/scene/gui/popup.h
@@ -35,12 +35,12 @@
@author Juan Linietsky <reduzio@gmail.com>
*/
class Popup : public Control {
-
+
OBJ_TYPE( Popup, Control );
bool exclusive;
bool popped_up;
-
+
protected:
virtual void _post_popup() {}
@@ -48,14 +48,14 @@ protected:
void _input_event(InputEvent p_event);
void _notification(int p_what);
void _fix_size();
- static void _bind_methods();
+ static void _bind_methods();
public:
enum {
NOTIFICATION_POST_POPUP=80,
NOTIFICATION_POPUP_HIDE=81
};
-
+
void set_exclusive(bool p_exclusive);
bool is_exclusive() const;
@@ -65,8 +65,8 @@ public:
void set_as_minsize();
virtual void popup();
-
- Popup();
+
+ Popup();
~Popup();
};