2015-04-02 18:00:50 -04:00
|
|
|
#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() {}
|