diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-02-23 22:36:25 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-02-24 18:20:43 +0100 |
commit | dff565f40105b20b0e8e4dba1f48ccc9b8e7ff44 (patch) | |
tree | 091f564418533267369d993f554e939c7351f4d6 /plugins/FloatingContacts | |
parent | 1cd49f75aa0dd71a1df44a1740dd4c15fe5656cf (diff) |
guard headers
Diffstat (limited to 'plugins/FloatingContacts')
-rw-r--r-- | plugins/FloatingContacts/src/filedrop.h | 3 | ||||
-rw-r--r-- | plugins/FloatingContacts/src/thumbs.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/FloatingContacts/src/filedrop.h b/plugins/FloatingContacts/src/filedrop.h index af384c67d3..9ca6441865 100644 --- a/plugins/FloatingContacts/src/filedrop.h +++ b/plugins/FloatingContacts/src/filedrop.h @@ -1,8 +1,9 @@ /* This file is a modification of clcfiledrop.h originally
written by Richard Hughes*/
-static HWND hwndCurDrag = NULL;
+#pragma once
+static HWND hwndCurDrag = nullptr;
class CDropTarget: public IDropTarget
{
private:
diff --git a/plugins/FloatingContacts/src/thumbs.h b/plugins/FloatingContacts/src/thumbs.h index d3e8d396d1..b7af34f8f3 100644 --- a/plugins/FloatingContacts/src/thumbs.h +++ b/plugins/FloatingContacts/src/thumbs.h @@ -1,5 +1,5 @@ -/////////////////////////////////////////////////////////////////////////////
-//
+#pragma once
+
#define USERNAME_LEN 50
class CDropTarget;
|