Implemented small tool for generating id of HLE-Function. Fixed small issue in PADManager dialog.

This commit is contained in:
Oil 2014-04-09 23:57:26 +04:00
parent 8183ee4d56
commit 770ebaf271
10 changed files with 148 additions and 12 deletions

View file

@ -1,8 +1,8 @@
#include "stdafx.h"
#include "TextInputDialog.h"
TextInputDialog::TextInputDialog(wxWindow* parent, const std::string& defvalue)
: wxDialog(parent, wxID_ANY, "Input text", wxDefaultPosition)
TextInputDialog::TextInputDialog(wxWindow* parent, const std::string& defvalue, const std::string& label)
: wxDialog(parent, wxID_ANY, label, wxDefaultPosition)
{
m_tctrl_text = new wxTextCtrl(this, wxID_ANY, fmt::ToUTF8(defvalue));