Mercurial > mercurial > hgweb_golang.cgi
changeset 64:ad5c30ee5cf1
horori: add manual.
author | pyon@macmini |
---|---|
date | Fri, 25 Dec 2020 20:48:01 +0900 |
parents | 17e042fc8a33 |
children | 0369656be06c |
files | src/kaigo/horori/manual.odt src/kaigo/horori/searcher/src/searcher.cpp |
diffstat | 2 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/kaigo/horori/searcher/src/searcher.cpp Fri Oct 16 20:35:44 2020 +0900 +++ b/src/kaigo/horori/searcher/src/searcher.cpp Fri Dec 25 20:48:01 2020 +0900 @@ -1,5 +1,5 @@ // Filename : searcher.cpp -// Last Change: 2020-06-26 金 10:32:52. +// Last Change: 2020-12-24 木 15:47:44. // #include <wx/msgdlg.h> #include <wx/dir.h> @@ -996,7 +996,7 @@ m_staticTextDB = new wxStaticText(m_panelMainte, wxID_ANY, wxT("DB"), wxDefaultPosition, wxDefaultSize, 0); fgSizerIdx->Add(m_staticTextDB, 0, wxALL, 5); - wxString m_choiceIdxYearChoices[] = {wxEmptyString, wxT("2018"), wxT("2019"), wxT("2020"), wxT("2021"), wxT("2022"), wxT("2023"), wxT("2024"), wxT("2026"), wxT("2027"), wxT("2028"), wxT("2029"), wxT("2030"), wxT("2031"), wxT("2032"), wxT("2033"), wxT("2034")}; + wxString m_choiceIdxYearChoices[] = {wxEmptyString, wxT("2017"), wxT("2018"), wxT("2019"), wxT("2020"), wxT("2021"), wxT("2022"), wxT("2023"), wxT("2024"), wxT("2025"), wxT("2026"), wxT("2027"), wxT("2028"), wxT("2029"), wxT("2030"), wxT("2031"), wxT("2032")}; int m_choiceIdxYearNChoices = sizeof(m_choiceIdxYearChoices) / sizeof(wxString); m_choiceIdxYear = new wxChoice(m_panelMainte, wxID_ANY, wxDefaultPosition, wxSize(100, -1), m_choiceIdxYearNChoices, m_choiceIdxYearChoices, 0); m_choiceIdxYear->SetSelection(0); @@ -1025,7 +1025,7 @@ m_choiceDrv->SetSelection(0); fgSizerIdx->Add(m_choiceDrv, 0, wxALL, 5); - wxString m_choiceDrvYearChoices[] = {wxEmptyString, wxT("2018"), wxT("2019"), wxT("2020"), wxT("2021"), wxT("2022"), wxT("2023"), wxT("2024"), wxT("2026"), wxT("2027"), wxT("2028"), wxT("2029"), wxT("2030"), wxT("2031"), wxT("2032"), wxT("2033"), wxT("2034")}; + wxString m_choiceDrvYearChoices[] = {wxEmptyString, wxT("2017"), wxT("2018"), wxT("2019"), wxT("2020"), wxT("2021"), wxT("2022"), wxT("2023"), wxT("2024"), wxT("2025"), wxT("2026"), wxT("2027"), wxT("2028"), wxT("2029"), wxT("2030"), wxT("2031"), wxT("2032")}; int m_choiceDrvYearNChoices = sizeof(m_choiceDrvYearChoices) / sizeof(wxString); m_choiceDrvYear = new wxChoice(m_panelMainte, wxID_ANY, wxDefaultPosition, wxSize(100, -1), m_choiceDrvYearNChoices, m_choiceDrvYearChoices, 0); m_choiceDrvYear->SetSelection(0); @@ -1472,7 +1472,8 @@ void SearchFrame::SetVersionInfo() { - this->SetTitle(wxT("Searcher - v1.0.3")); + this->SetTitle(wxT("Searcher - v1.0.4")); + m_textCtrlVersion->AppendText(wxT("1.0.4 : small fix (2020-12-24)\n")); m_textCtrlVersion->AppendText(wxT("1.0.3 : new feature - paste search (2020-06-26)\n")); m_textCtrlVersion->AppendText(wxT("1.0.2 : new feature - dump index (2020-06-24)\n")); m_textCtrlVersion->AppendText(wxT("1.0.1 : bug fix (2020-06-22)\n"));