Tyro/src/widgets/EditPane.cpp

12 lines
214 B
C++
Raw Normal View History

#include "EditPane.h"
EditPane::EditPane(
wxWindow *parent, wxWindowID id, const wxPoint &pos,
const wxSize &size, long style
) : wxStyledTextCtrl (parent, id, pos, size, style)
{
}
2015-04-06 15:42:05 -04:00
EditPane::~EditPane() {}