]> git.saurik.com Git - wxWidgets.git/commitdiff
Patch [ 584078 ] Misc samples fixes from Dimitri Schoolwerth
authorMattia Barbon <mbarbon@cpan.org>
Fri, 2 Aug 2002 08:16:15 +0000 (08:16 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Fri, 2 Aug 2002 08:16:15 +0000 (08:16 +0000)
Addresses:
  printf-format warinigs
  indentation/style
  unused variable warnings
  used wxID_ABOUT for about menu entry
  removed references to "minimal sample" in other samples
  some other misc warinigs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/controls/controls.cpp
samples/dnd/dnd.cpp

index 6a64e31cf020acadb8077ea5908cce6a5f04b9ee..8dc971ecbc4165e8a2b4117fd7b29c66508b723b 100644 (file)
@@ -757,8 +757,7 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h )
 
 #if !defined(__WXMOTIF__) && !defined(__WIN16__)  // wxStaticBitmap not working under Motif yet; and icons not allowed under WIN16.
     wxIcon icon = wxArtProvider::GetIcon(wxART_INFORMATION);
-    wxStaticBitmap *bmpStatic = new wxStaticBitmap(panel, -1, icon,
-                                                   wxPoint(10, 10));
+    (void) new wxStaticBitmap( panel, -1, icon, wxPoint(10, 10) );
 
     // VZ: don't leak memory
     // bmpStatic = new wxStaticBitmap(panel, -1, wxNullIcon, wxPoint(50, 10));
@@ -1254,8 +1253,8 @@ void MyPanel::OnSpinCtrlText(wxCommandEvent& event)
     if ( m_spinctrl )
     {
         wxString s;
-        s.Printf(_T("Spin ctrl text changed: now %d (from event: %s)\n"),
-                 m_spinctrl->GetValue(), event.GetString());
+        s.Printf( _T("Spin ctrl text changed: now %d (from event: %s)\n"),
+                 m_spinctrl->GetValue(), event.GetString().c_str() );
         m_text->AppendText(s);
     }
 }
@@ -1265,8 +1264,8 @@ void MyPanel::OnSpinCtrl(wxSpinEvent& event)
     if ( m_spinctrl )
     {
         wxString s;
-        s.Printf(_T("Spin ctrl changed: now %d (from event: %d)\n"),
-                 m_spinctrl->GetValue(), event.GetInt());
+        s.Printf( _T("Spin ctrl changed: now %d (from event: %ld)\n"),
+                 m_spinctrl->GetValue(), event.GetInt() );
         m_text->AppendText(s);
     }
 }
@@ -1275,8 +1274,9 @@ void MyPanel::OnSpinCtrlUp(wxSpinEvent& event)
 {
     if ( m_spinctrl )
     {
-        m_text->AppendText(wxString::Format(_T("Spin up: %d (from event: %d)\n"),
-                           m_spinctrl->GetValue(), event.GetInt()));
+        m_text->AppendText( wxString::Format(
+            _T("Spin up: %d (from event: %ld)\n"),
+            m_spinctrl->GetValue(), event.GetInt() ) );
     }
 }
 
@@ -1284,8 +1284,9 @@ void MyPanel::OnSpinCtrlDown(wxSpinEvent& event)
 {
     if ( m_spinctrl )
     {
-        m_text->AppendText(wxString::Format(_T("Spin down: %d (from event: %d)\n"),
-                           m_spinctrl->GetValue(), event.GetInt()));
+        m_text->AppendText( wxString::Format(
+            _T("Spin down: %d (from event: %ld)\n"),
+            m_spinctrl->GetValue(), event.GetInt() ) );
     }
 }
 
index 892a621cc17f8fda1a7660d07cca1daf85250d73..41b7851501f43d7cca178b81f99e0099e952e107 100644 (file)
@@ -1760,7 +1760,7 @@ void DnDShapeFrame::OnDrop(wxCoord x, wxCoord y, DnDShape *shape)
     wxPoint pt(x, y);
 
     wxString s;
-    s.Printf(wxT("Shape dropped at (%ld, %ld)"), pt.x, pt.y);
+    s.Printf(wxT("Shape dropped at (%d, %d)"), pt.x, pt.y);
     SetStatusText(s);
 
     shape->Move(pt);