Create frame to contain the todo list
[ttodo.git] / frame.cc
blob55c56b13b3e018a791b9e3b0784b9b2fb8e935ef
1 // Copyright (c) 2006 by Mike Sharov <msharov@users.sourceforge.net>
2 //
3 // tdframe.cc
4 //
6 #include "tdframe.h"
7 #include "todolist.h"
8 #include "ui/editbox.h"
10 /// Default constructor.
11 CTodoFrame::CTodoFrame (void)
12 : CWindow ()
16 /// Unimplemented function.
17 void CTodoFrame::OnCreate (void)
19 AddChild (new CTodoList);
20 CWindow::OnCreate();