]> git.saurik.com Git - wxWidgets.git/commitdiff
More compilation fixes.
authorStefan Neis <Stefan.Neis@t-online.de>
Mon, 13 Mar 2000 12:04:25 +0000 (12:04 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Mon, 13 Mar 2000 12:04:25 +0000 (12:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/grid.h
src/generic/grid.cpp

index 47d18a9031d349d12dbd339f89e9e85f9904edb1..5f707fb54b334b03d45a48622d01bb73a2810e25 100644 (file)
@@ -1478,7 +1478,7 @@ public:
     void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
     { }
     void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
-    wxPen& GetDividerPen() const { return wxNullPen; }
+    wxPen& GetDividerPen() const;
     void OnActivate(bool WXUNUSED(active)) {}
 
     // ******** End of compatibility functions **********
index 592c3908543c5e606d5e0935e6a19f9d6c55a846..65a3603c05aef9ecabc2a4567fcb6691c02b061e 100644 (file)
@@ -624,7 +624,7 @@ void wxGridCellTextEditor::HandleReturn( wxKeyEvent&
 {
 #if defined(__WXMOTIF__) || defined(__WXGTK__)
     // wxMotif needs a little extra help...
-    long pos = Text()->GetInsertionPoint();
+    size_t pos = (size_t)( Text()->GetInsertionPoint() );
     wxString s( Text()->GetValue() );
     s = s.Left(pos) + "\n" + s.Mid(pos);
     Text()->SetValue(s);
@@ -7606,6 +7606,12 @@ void wxGrid::Fit()
     AutoSize();
 }
 
+
+wxPen& wxGrid::GetDividerPen() const
+{
+    return wxNullPen;
+}
+
 // ----------------------------------------------------------------------------
 // cell value accessor functions
 // ----------------------------------------------------------------------------