aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/frame.cpp')
-rw-r--r--src/menu/frame.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/menu/frame.cpp b/src/menu/frame.cpp
index 8707f0cc..665a2627 100644
--- a/src/menu/frame.cpp
+++ b/src/menu/frame.cpp
@@ -28,11 +28,13 @@
namespace usdx
{
- Frame::Frame() : background(NULL)
+ Frame::Frame(Control* parent)
+ : Container(parent), background(NULL)
{
}
- Frame::Frame(FrameBackground* background) : background(background)
+ Frame::Frame(Control* parent, FrameBackground* background)
+ : Container(parent), background(background)
{
}