asmjs: Building Scintilla.
This commit is contained in:
parent
90c9f880b8
commit
839ef0bcce
1 changed files with 8 additions and 4 deletions
|
@ -5,8 +5,16 @@
|
||||||
|
|
||||||
#if defined(SCI_NAMESPACE)
|
#if defined(SCI_NAMESPACE)
|
||||||
|
|
||||||
|
#include <bx/bx.h>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
|
#if BX_PLATFORM_EMSCRIPTEN
|
||||||
|
# include <compat/ctype.h>
|
||||||
|
#endif // BX_PLATFORM_EMSCRIPTEN
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -452,8 +460,6 @@ public:
|
||||||
Editor()
|
Editor()
|
||||||
: m_width(0)
|
: m_width(0)
|
||||||
, m_height(0)
|
, m_height(0)
|
||||||
, m_wheelVRotation(0)
|
|
||||||
, m_wheelHRotation(0)
|
|
||||||
, m_searchResultIndication(0xff5A5A5A)
|
, m_searchResultIndication(0xff5A5A5A)
|
||||||
, m_filteredSearchResultIndication(0xff5a5a5a)
|
, m_filteredSearchResultIndication(0xff5a5a5a)
|
||||||
, m_occurrenceIndication(0xff5a5a5a)
|
, m_occurrenceIndication(0xff5a5a5a)
|
||||||
|
@ -806,8 +812,6 @@ public:
|
||||||
private:
|
private:
|
||||||
int m_width;
|
int m_width;
|
||||||
int m_height;
|
int m_height;
|
||||||
int m_wheelVRotation;
|
|
||||||
int m_wheelHRotation;
|
|
||||||
int m_lastFirstVisibleLine;
|
int m_lastFirstVisibleLine;
|
||||||
|
|
||||||
Scintilla::ColourDesired m_searchResultIndication;
|
Scintilla::ColourDesired m_searchResultIndication;
|
||||||
|
|
Reference in a new issue