]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_links.cpp
GUI display problems fixed
[wxWidgets.git] / src / html / m_links.cpp
index 58876ee6df396b765bc1c9a6cc7fbd0e4d081e82..462cd36acf01a752c0c10b3f6543ee3b1d053aa6 100644 (file)
@@ -11,8 +11,9 @@
 #pragma implementation
 #endif
 
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
+#include "wx/defs.h"
 #if wxUSE_HTML
 
 #ifdef __BORDLANDC__
@@ -20,7 +21,7 @@
 #endif
 
 #ifndef WXPRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
 #endif
 
 
@@ -40,7 +41,7 @@ class wxHtmlAnchorCell : public wxHtmlCell
         wxHtmlAnchorCell(const wxString& name) : wxHtmlCell() {m_AnchorName = name;}
         virtual const wxHtmlCell* Find(int condition, const void* param) const
         {
-            if ((condition == HTML_COND_ISANCHOR) && (m_AnchorName == (*((const wxString*)param))))
+            if ((condition == wxHTML_COND_ISANCHOR) && (m_AnchorName == (*((const wxString*)param))))
                 return this;
             else
                 return wxHtmlCell::Find(condition, param);