Tyro/src/widgets/EditPane.cpp
2015-04-09 11:45:19 -04:00

12 lines
214 B
C++

#include "EditPane.h"
EditPane::EditPane(
wxWindow *parent, wxWindowID id, const wxPoint &pos,
const wxSize &size, long style
) : wxStyledTextCtrl (parent, id, pos, size, style)
{
}
EditPane::~EditPane() {}