diff options
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; |