summaryrefslogtreecommitdiff
path: root/scene/main/viewport.cpp
diff options
context:
space:
mode:
authorJohnJLight <johnjosephlight@gmail.com>2019-03-19 14:35:57 -0400
committerRĂ©mi Verschelde <rverschelde@gmail.com>2019-06-19 15:24:31 +0200
commit38d3bfe971155bc7b0bdc8a10e059f9479d1eb5d (patch)
tree5080c8aa70ccb5c0692b3085baab4888df3ed19c /scene/main/viewport.cpp
parent43a9b8c76cd185c175e9458a2b7ce972c8b84f03 (diff)
Made use of semicolons more consitent, fixed formatting
Diffstat (limited to 'scene/main/viewport.cpp')
-rw-r--r--scene/main/viewport.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp
index c02873cdeb..f8a0db18b1 100644
--- a/scene/main/viewport.cpp
+++ b/scene/main/viewport.cpp
@@ -172,14 +172,16 @@ ViewportTexture::~ViewportTexture() {
class TooltipPanel : public PanelContainer {
- GDCLASS(TooltipPanel, PanelContainer)
+ GDCLASS(TooltipPanel, PanelContainer);
+
public:
TooltipPanel(){};
};
class TooltipLabel : public Label {
- GDCLASS(TooltipLabel, Label)
+ GDCLASS(TooltipLabel, Label);
+
public:
TooltipLabel(){};
};