diff options
author | Neil <nyamatongwe@gmail.com> | 2024-02-01 08:56:45 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-02-01 08:56:45 +1100 |
commit | c6b542f84e65083552e52768db7bb4c11dcd7a64 (patch) | |
tree | e97a615381f422e67df985b18b3a50a56cb5590b /gtk | |
parent | 1345bb5b0e10e213fb1943fe491679d6fe45e9b0 (diff) | |
download | scintilla-mirror-c6b542f84e65083552e52768db7bb4c11dcd7a64.tar.gz |
Move UndoHistory into its own module that is accessible from CellBuffer and
tests but hidden from most of Scintilla.
Access through std::unique_ptr.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/deps.mak | 13 | ||||
-rw-r--r-- | gtk/makefile | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gtk/deps.mak b/gtk/deps.mak index e7a562661..323e94aca 100644 --- a/gtk/deps.mak +++ b/gtk/deps.mak @@ -142,6 +142,7 @@ CellBuffer.o: \ ../src/SparseVector.h \ ../src/ChangeHistory.h \ ../src/CellBuffer.h \ + ../src/UndoHistory.h \ ../src/UniConversion.h ChangeHistory.o: \ ../src/ChangeHistory.cxx \ @@ -478,6 +479,18 @@ Style.o: \ ../src/Geometry.h \ ../src/Platform.h \ ../src/Style.h +UndoHistory.o: \ + ../src/UndoHistory.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Position.h \ + ../src/SplitVector.h \ + ../src/Partitioning.h \ + ../src/RunStyles.h \ + ../src/SparseVector.h \ + ../src/ChangeHistory.h \ + ../src/CellBuffer.h \ + ../src/UndoHistory.h UniConversion.o: \ ../src/UniConversion.cxx \ ../src/UniConversion.h diff --git a/gtk/makefile b/gtk/makefile index 17816f531..df0c71348 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -149,6 +149,7 @@ SRC_OBJS = \ RunStyles.o \ Selection.o \ Style.o \ + UndoHistory.o \ UniConversion.o \ UniqueString.o \ ViewStyle.o \ |