From 6eee444e1db2d258b5020f740480c0cbe73b57fd Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Tue, 21 Jul 2015 00:16:08 -0400 Subject: [PATCH] Fix wxT format specifier --- src/AppFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppFrame.cpp b/src/AppFrame.cpp index 698392a..88f29a4 100644 --- a/src/AppFrame.cpp +++ b/src/AppFrame.cpp @@ -330,7 +330,7 @@ AppFrame::AppFrame() : #ifdef _WIN32 SetIcon(wxICON(frame_icon)); #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]; entries[0].Set(wxACCEL_CTRL, (int) 'O', wxID_OPEN);