Skip to content

Commit 6ea2acf

Browse files
committed
fix: wxstring to std::string
1 parent 3e332d4 commit 6ea2acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ void MyFrame::OnIterativeFDoG(wxCommandEvent &event)
319319
//Comboboxes
320320
void MyFrame::OnProcessingBox(wxCommandEvent &event)
321321
{
322-
std::string s = processingBox->GetValue();
322+
std::string s = processingBox->GetValue().ToStdString();
323323
drawPane->set_mode(s);
324324

325325
render_loop_on = (s == MODE_ETF) || (s == MODE_ETF_DEBUG);

0 commit comments

Comments
 (0)