Remove Ion::Charset

This commit is contained in:
Léa Saviot
2019-01-11 17:37:23 +01:00
committed by Émilie Feral
parent db54c5bd27
commit 63d7155376
83 changed files with 453 additions and 470 deletions

View File

@@ -4,7 +4,6 @@
#include "script_node.h"
#include "script_store.h"
#include <escher/table_cell.h>
#include <ion/charset.h>
#include <kandinsky/coordinate.h>
namespace Code {
@@ -23,8 +22,10 @@ public:
void reloadCell() override;
const char * text() const override { return m_scriptNodeView.text(); }
static_assert('\x11' == KDCodePointEmpty, "Unicode error");
constexpr static char k_parentheses[] = "()";
constexpr static char k_parenthesesWithEmpty[] = {'(', Ion::Charset::Empty, ')', 0};
constexpr static char k_parenthesesWithEmpty[] = "(\x11)";
protected:
class ScriptNodeView : public HighlightCell {
public: