aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-01-19 14:38:06 +1100
committernyamatongwe <devnull@localhost>2013-01-19 14:38:06 +1100
commita30cba782eca76807bde43f1f693d3f923ce6d8c (patch)
treecf21f399196d4cff783e9649755619b5ebfc6503 /src/CellBuffer.h
parent7a767545ea772f9b246e1fe8914226a94291ca61 (diff)
downloadscintilla-mirror-a30cba782eca76807bde43f1f693d3f923ce6d8c.tar.gz
Add private copy constructors to prevent copying and avoid warnings.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h
index bfbb121de..cde6f5a1a 100644
--- a/src/CellBuffer.h
+++ b/src/CellBuffer.h
@@ -98,6 +98,9 @@ class UndoHistory {
void EnsureUndoRoom();
+ // Private so UndoHistory objects can not be copied
+ UndoHistory(const UndoHistory &);
+
public:
UndoHistory();
~UndoHistory();