removed some accel key debug warnings on start up
authordrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Fri, 9 Nov 2012 04:38:02 +0000 (04:38 +0000)
committerdrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Fri, 9 Nov 2012 04:38:02 +0000 (04:38 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@955 01035d8c-6547-0410-b346-abe4f91aad63

fdmdv2/src/fdmdv2_plot.h
fdmdv2/src/topFrame.cpp

index a57cd6dd59002498f8f797c3a2a1c3564021b9b8..0967556e778e6f034a5e23523d31e0a84b90bb9e 100644 (file)
@@ -31,7 +31,7 @@
 #define wxUSE_LIBTIFF       1
 
 #define PLOT_BORDER         12
-#define XLEFT_OFFSET        30
+#define XLEFT_OFFSET        40
 #define XLEFT_TEXT_OFFSET   6
 #define YBOTTOM_OFFSET      20
 #define YBOTTOM_TEXT_OFFSET 6
index bca534348249f4f3eb578c6f3baea0f997000521..d616189ccdf8045b459164f230ebd15095099cd4 100644 (file)
@@ -76,7 +76,7 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const
     tools->AppendSeparator();
 
     wxMenuItem* m_menuItemCaptRxInStream;
-    m_menuItemCaptRxInStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Rx Input Stream")) + wxT('\t') + wxT("Capture receive input stream to file."), wxEmptyString, wxITEM_NORMAL);
+    m_menuItemCaptRxInStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Rx Input Stream")), wxEmptyString, wxITEM_NORMAL);
 #ifdef __WXMSW__
     m_menuItemCaptRxInStream->SetBitmaps(wxNullBitmap);
 #elif defined(__WXGTK__)
@@ -85,7 +85,7 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const
     tools->Append(m_menuItemCaptRxInStream);
 
     wxMenuItem* m_menuItemCaptTxInStream;
-    m_menuItemCaptTxInStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Tx Input Stream")) + wxT('\t') + wxT("Capture transmit input stream to file."), wxEmptyString, wxITEM_NORMAL);
+    m_menuItemCaptTxInStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Tx Input Stream")), wxEmptyString, wxITEM_NORMAL);
 #ifdef __WXMSW__
     m_menuItemCaptTxInStream->SetBitmaps(wxNullBitmap);
 #elif defined(__WXGTK__)
@@ -94,7 +94,7 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const
     tools->Append(m_menuItemCaptTxInStream);
 
     wxMenuItem* m_menuItemCaptRxOutStream;
-    m_menuItemCaptRxOutStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Rx Output Stream")) + wxT('\t') + wxT("Capture receive output stream to file."), wxEmptyString, wxITEM_NORMAL);
+    m_menuItemCaptRxOutStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Rx Output Stream")), wxEmptyString, wxITEM_NORMAL);
 #ifdef __WXMSW__
     m_menuItemCaptRxOutStream->SetBitmaps(wxNullBitmap);
 #elif defined(__WXGTK__)
@@ -103,7 +103,7 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const
     tools->Append(m_menuItemCaptRxOutStream);
 
     wxMenuItem* m_menuItemCaptTxOutStream;
-    m_menuItemCaptTxOutStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Tx Output Stream")) + wxT('\t') + wxT("Capture transmit output stream to file."), wxEmptyString, wxITEM_NORMAL);
+    m_menuItemCaptTxOutStream = new wxMenuItem(tools, wxID_ANY, wxString(_("Capture Tx Output Stream")), wxEmptyString, wxITEM_NORMAL);
 #ifdef __WXMSW__
     m_menuItemCaptTxOutStream->SetBitmaps(wxNullBitmap);
 #elif defined(__WXGTK__)