diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-03 11:20:59 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-03 11:20:59 -0500 |
commit | 6d6f5dbf8c8e39aa0cf641a932d4da12200160fe (patch) | |
tree | 7ce1551c0c80d83af36b48ddf18274232514370f /src/ipc_dialog.h | |
parent | 969919119acd83320c4deb621a60ce6f36ff9583 (diff) | |
download | lingo-ap-tracker-6d6f5dbf8c8e39aa0cf641a932d4da12200160fe.tar.gz lingo-ap-tracker-6d6f5dbf8c8e39aa0cf641a932d4da12200160fe.tar.bz2 lingo-ap-tracker-6d6f5dbf8c8e39aa0cf641a932d4da12200160fe.zip |
Handle unicode conversion between wx and rest of app
Diffstat (limited to 'src/ipc_dialog.h')
-rw-r--r-- | src/ipc_dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipc_dialog.h b/src/ipc_dialog.h index 1caed01..a8c4512 100644 --- a/src/ipc_dialog.h +++ b/src/ipc_dialog.h | |||
@@ -13,7 +13,7 @@ class IpcDialog : public wxDialog { | |||
13 | public: | 13 | public: |
14 | IpcDialog(); | 14 | IpcDialog(); |
15 | 15 | ||
16 | std::string GetIpcAddress() { return address_box_->GetValue().ToStdString(); } | 16 | std::string GetIpcAddress() { return address_box_->GetValue().utf8_string(); } |
17 | 17 | ||
18 | private: | 18 | private: |
19 | void OnResetClicked(wxCommandEvent& event); | 19 | void OnResetClicked(wxCommandEvent& event); |