]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/htmllbox.h
Applied patch 1586499: wxCoordRound function
[wxWidgets.git] / include / wx / htmllbox.h
index 9e5a4b44b7a58aaf9c666f67eec620d54ba5a2ef..6f225f8ec0fe4fda4a2f3dae28af33c0531464a4 100644 (file)
@@ -25,8 +25,8 @@ class WXDLLIMPEXP_HTML wxHtmlWinParser;
 class WXDLLIMPEXP_HTML wxHtmlListBoxCache;
 class WXDLLIMPEXP_HTML wxHtmlListBoxStyle;
 
-extern WXDLLEXPORT_DATA(const wxChar) wxHtmlListBoxNameStr[];
-extern WXDLLEXPORT_DATA(const wxChar) wxSimpleHtmlListBoxNameStr[];
+extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxHtmlListBoxNameStr[];
+extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxSimpleHtmlListBoxNameStr[];
 
 // ----------------------------------------------------------------------------
 // wxHtmlListBox
@@ -242,13 +242,13 @@ public:
                 long style = wxHLB_DEFAULT_STYLE,
                 const wxValidator& validator = wxDefaultValidator,
                 const wxString& name = wxSimpleHtmlListBoxNameStr);
-                
+
     virtual ~wxSimpleHtmlListBox();
 
     // these must be overloaded otherwise the compiler will complain
     // about  wxItemContainerImmutable::[G|S]etSelection being pure virtuals...
     void SetSelection(int n)
-        { return wxVListBox::SetSelection(n); }
+        { wxVListBox::SetSelection(n); }
     int GetSelection() const
         { return wxVListBox::GetSelection(); }
 
@@ -306,9 +306,9 @@ protected:
     // overload these functions just to change their visibility: users of
     // wxSimpleHtmlListBox shouldn't be allowed to call them directly!
     virtual void SetItemCount(size_t count)
-        { return wxHtmlListBox::SetItemCount(count); }
+        { wxHtmlListBox::SetItemCount(count); }
     virtual void SetLineCount(size_t count)
-        { return wxHtmlListBox::SetLineCount(count); }
+        { wxHtmlListBox::SetLineCount(count); }
 
     virtual wxString OnGetItem(size_t n) const
         { return m_items[n]; }