wxFileDialog :: GetPath()在Ubuntu上返回“/”,在Windows上很好

时间:2014-03-27 09:19:38

标签: c++ wxwidgets

wxFileDialog* ctrl = new wxFileDialog(this, L"Open", "/home/example", "example.test",       "|All files (*.*)|*.*", wxFD_OPEN | wxFD_FILE_MUST_EXIST, wxDefaultPosition);
if(ctrl->ShowModal() == wxID_OK)
{
      ctrl->GetPath().wx_str()); // = '/'
}

ctrl->Destroy();

无论我做什么,我总是从ctrl-> GetPath()获得“/”,正斜杠。

知道为什么吗?

0 个答案:

没有答案