mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-26 13:48:38 -05:00
Fix wxT format specifier
This commit is contained in:
parent
2b86176625
commit
6eee444e1d
@ -330,7 +330,7 @@ AppFrame::AppFrame() :
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
SetIcon(wxICON(frame_icon));
|
SetIcon(wxICON(frame_icon));
|
||||||
#endif
|
#endif
|
||||||
GetStatusBar()->SetStatusText(wxString::Format(wxT("Set center frequency: %i"), wxGetApp().getConfig()->getCenterFreq()));
|
GetStatusBar()->SetStatusText(wxString::Format(wxT("Set center frequency: %ll"), wxGetApp().getConfig()->getCenterFreq()));
|
||||||
|
|
||||||
wxAcceleratorEntry entries[3];
|
wxAcceleratorEntry entries[3];
|
||||||
entries[0].Set(wxACCEL_CTRL, (int) 'O', wxID_OPEN);
|
entries[0].Set(wxACCEL_CTRL, (int) 'O', wxID_OPEN);
|
||||||
|
Loading…
Reference in New Issue
Block a user