We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b306a commit 4dd014dCopy full SHA for 4dd014d
lib/gui/src/type_extension/extension_manually_event.cpp
@@ -108,9 +108,9 @@ void ExtensionManually_Container::onExtend(wxCommandEvent &event) {
108
109
void ExtensionManually_Container::appendRecordList() {
110
111
- std::string value(this->tcRecord->GetValue().c_str());
+ std::wstring value(this->tcRecord->GetValue().c_str());
112
113
- if (value.compare("")==0)
+ if (value.compare(reinterpret_cast<const wchar_t *>("")) == 0)
114
{
115
this->stError->SetLabelText("Empty record!");
116
this->stError->SetForegroundColour(wxColor(*wxRED));
0 commit comments