]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_hline.cpp
forward ported patch to IsEditable()
[wxWidgets.git] / src / html / m_hline.cpp
index d0a1b033bcda0f524b66adba2e89ce976f8ddcfe..b81880687e8c4fbe80d9ca26f6d49eaa9e24499f 100644 (file)
@@ -42,7 +42,8 @@ class wxHtmlLineCell : public wxHtmlCell
 {
     public:
         wxHtmlLineCell(int size, bool shading) : wxHtmlCell() {m_Height = size; m_HasShading = shading;}
-        void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2);
+        void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2,
+                  wxHtmlRenderingInfo& info);
         void Layout(int w)
             { m_Width = w; wxHtmlCell::Layout(w); }
 
@@ -52,7 +53,9 @@ class wxHtmlLineCell : public wxHtmlCell
 };
 
 
-void wxHtmlLineCell::Draw(wxDC& dc, int x, int y, int WXUNUSED(view_y1), int WXUNUSED(view_y2))
+void wxHtmlLineCell::Draw(wxDC& dc, int x, int y,
+                          int WXUNUSED(view_y1), int WXUNUSED(view_y2),
+                          wxHtmlRenderingInfo& WXUNUSED(info))
 {
     wxBrush mybrush(wxT("GREY"), (m_HasShading) ? wxTRANSPARENT : wxSOLID);
     wxPen mypen(wxT("GREY"), 1, wxSOLID);