diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-04-21 09:30:16 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-04-21 09:30:16 +1000 |
| commit | 261277783fa16e0c974b1981a5eb0a208fca955e (patch) | |
| tree | f9a75c9fd718ef57994b775e6d653983e5634085 /win32 | |
| parent | cd65e0b6478f38b809dd08805e7795a9d8b669eb (diff) | |
| download | scintilla-mirror-261277783fa16e0c974b1981a5eb0a208fca955e.tar.gz | |
More consistent deletion of standard methods.
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/PlatWin.cxx | 6 | ||||
| -rw-r--r-- | win32/ScintillaWin.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 75d981def..b54b11954 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -466,7 +466,7 @@ public: buffer = bufferStandard; } } - // Deleted so VarBuffer objects can not be copied + // Deleted so VarBuffer objects can not be copied. VarBuffer(const VarBuffer &) = delete; VarBuffer &operator=(const VarBuffer &) = delete; ~VarBuffer() { @@ -515,7 +515,7 @@ class SurfaceGDI : public Surface { public: SurfaceGDI(); - // Deleted so SurfaceGDI objects can not be copied + // Deleted so SurfaceGDI objects can not be copied. SurfaceGDI(const SurfaceGDI &) = delete; SurfaceGDI &operator=(const SurfaceGDI &) = delete; ~SurfaceGDI() override; @@ -1073,7 +1073,7 @@ class SurfaceD2D : public Surface { public: SurfaceD2D(); - // Deleted so SurfaceD2D objects can not be copied + // Deleted so SurfaceD2D objects can not be copied. SurfaceD2D(const SurfaceD2D &) = delete; SurfaceD2D &operator=(const SurfaceD2D &) = delete; virtual ~SurfaceD2D() override; diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 91a68fbf2..155ebdb72 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -272,7 +272,7 @@ class ScintillaWin : #endif explicit ScintillaWin(HWND hwnd); - // Deleted so ScintillaWin objects can not be copied + // Deleted so ScintillaWin objects can not be copied. ScintillaWin(const ScintillaWin &) = delete; ScintillaWin &operator=(const ScintillaWin &) = delete; ~ScintillaWin() override; |
