/////////////////////////////////////////////////////////////////////////////
-// Name: mod_list.cpp
+// Name: m_list.cpp
// Purpose: wxHtml module for lists
// Author: Vaclav Slavik
// RCS-ID: $Id$
#endif
#ifndef WXPRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#include "wx/html/htmlcell.h"
-FORCE_LINK_ME(mod_list)
+FORCE_LINK_ME(m_list)
//-----------------------------------------------------------------------------
wxHtmlContainerCell *c;
// List Item:
- if (tag.GetName() == "LI") {
+ if (tag.GetName() == wxT("LI")) {
if (!tag.IsEnding()) {
m_WParser -> CloseContainer();
m_WParser -> CloseContainer();
else {
int oldnum = m_Numbering;
- if (tag.GetName() == "UL") m_Numbering = 0;
+ if (tag.GetName() == wxT("UL")) m_Numbering = 0;
else m_Numbering = 1;
c = m_WParser -> GetContainer();