Skip to content

Commit

Permalink
Update Scintilla to version 3.21.1 (#2506)
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Sep 26, 2020
1 parent c5def01 commit 8f09096
Show file tree
Hide file tree
Showing 120 changed files with 4,919 additions and 3,011 deletions.
1 change: 1 addition & 0 deletions scintilla/Makefile.am
Expand Up @@ -60,6 +60,7 @@ gtk/scintilla-marshal.c \
gtk/scintilla-marshal.h \
lexlib/Accessor.cxx \
lexlib/Accessor.h \
lexlib/CatalogueModules.h \
lexlib/CharacterCategory.cxx \
lexlib/CharacterCategory.h \
lexlib/CharacterSet.cxx \
Expand Down
5 changes: 5 additions & 0 deletions scintilla/gtk/Converter.h
Expand Up @@ -29,6 +29,11 @@ class Converter {
iconvh = iconvhBad;
Open(charSetDestination, charSetSource, transliterations);
}
// Deleted so Converter objects can not be copied.
Converter(const Converter &) = delete;
Converter(Converter &&) = delete;
Converter &operator=(const Converter &) = delete;
Converter &operator=(Converter &&) = delete;
~Converter() {
Close();
}
Expand Down
159 changes: 84 additions & 75 deletions scintilla/gtk/PlatGTK.cxx

Large diffs are not rendered by default.

0 comments on commit 8f09096

Please sign in to comment.