Mercurial > mercurial > hgweb_lesearcher.cgi
annotate src/setting.cpp @ 0:615a15029602 default tip
first commit.
author | pyon@macmini |
---|---|
date | Sun, 10 Nov 2019 08:39:41 +0900 |
parents | |
children |
rev | line source |
---|---|
0 | 1 /* Filename : setting.cpp |
2 Last Change: 2019-11-08 金 14:23:14. | |
3 by Takayuki Mutoh | |
4 */ | |
5 #include "setting.h" | |
6 | |
7 SettingFrame::SettingFrame(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style) | |
8 : wxFrame(parent, id, title, pos, size, style) | |
9 { | |
10 this->SetSizeHints(wxDefaultSize, wxDefaultSize); | |
11 | |
12 this->Centre(wxBOTH); | |
13 } | |
14 | |
15 SettingFrame::~SettingFrame() | |
16 { | |
17 } | |
18 |