]> git.saurik.com Git - wxWidgets.git/commitdiff
Warning fixes and TODO markup for easier finding by brave volounteers.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 5 Oct 2006 07:18:25 +0000 (07:18 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 5 Oct 2006 07:18:25 +0000 (07:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/datavgen.cpp

index dbe4a306c5e84d77c67d6f24258cd5cc979874bf..934d621f5100f713ebcc1caf7111643feaf63934 100644 (file)
@@ -1797,34 +1797,44 @@ bool wxDataViewCtrl::AppendColumn( wxDataViewColumn *col )
     return true;
 }
 
-void wxDataViewCtrl::SetSelection( int row )
+void wxDataViewCtrl::SetSelection( int WXUNUSED(row) )
 {
+    // FIXME - TODO
 }
 
-void wxDataViewCtrl::SetSelectionRange( unsigned int from, unsigned int to )
+void wxDataViewCtrl::SetSelectionRange( unsigned int WXUNUSED(from), unsigned int WXUNUSED(to) )
 {
+    // FIXME - TODO
 }
 
-void wxDataViewCtrl::SetSelections( const wxArrayInt& aSelections)
+void wxDataViewCtrl::SetSelections( const wxArrayInt& WXUNUSED(aSelections) )
 {
+    // FIXME - TODO
 }
-    
-void wxDataViewCtrl::Unselect( unsigned int row )
+
+void wxDataViewCtrl::Unselect( unsigned int WXUNUSED(row) )
 {
+    // FIXME - TODO
 }
 
-bool wxDataViewCtrl::IsSelected( unsigned int row ) const
+bool wxDataViewCtrl::IsSelected( unsigned int WXUNUSED(row) ) const
 {
+    // FIXME - TODO
+
     return false;
 }
 
 int wxDataViewCtrl::GetSelection() const
 {
+    // FIXME - TODO
+
     return -1;
 }
 
-int wxDataViewCtrl::GetSelections(wxArrayInt& aSelections) const
+int wxDataViewCtrl::GetSelections(wxArrayInt& WXUNUSED(aSelections) ) const
 {
+    // FIXME - TODO
+
     return 0;
 }