]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/htmllbox.h
native wxHyperlinkCtrl implementation for GTK+ 2.10+ (patch 1661851)
[wxWidgets.git] / include / wx / htmllbox.h
index 2f0675fa627f2f05a2a70848cf03a82994456b67..a7ee460e6f601eee00a497b79c84e99145c12908 100644 (file)
@@ -74,7 +74,6 @@ public:
     virtual void RefreshAll();
     virtual void SetItemCount(size_t count);
 
-
 #if wxUSE_FILESYSTEM
     // retrieve the file system used by the wxHtmlWinParser: if you use
     // relative paths in your HTML, you should use its ChangePathTo() method
@@ -312,8 +311,9 @@ protected:
     virtual wxString OnGetItem(size_t n) const
         { return m_items[n]; }
 
-    wxArrayString m_items;
-    wxArrayPtrVoid m_HTMLclientData;
+    wxArrayString   m_items;
+    wxArrayPtrVoid  m_HTMLclientData;
+
     // Note: For the benefit of old compilers (like gcc-2.8) this should
     // not be named m_clientdata as that clashes with the name of an
     // anonymous struct member in wxEvtHandler, which we derive from.