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/TabSRMM | |
parent | 1cd49f75aa0dd71a1df44a1740dd4c15fe5656cf (diff) |
guard headers
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/ImageDataObject.h | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/muchighlight.h | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/templates.h | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/typingnotify.h | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/ImageDataObject.h b/plugins/TabSRMM/src/ImageDataObject.h index 9a4c9ad5de..3f46b44d6d 100644 --- a/plugins/TabSRMM/src/ImageDataObject.h +++ b/plugins/TabSRMM/src/ImageDataObject.h @@ -19,6 +19,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //code taken partly from public example on the internet, source unknown.
+#pragma once
+
class CImageDataObject : IDataObject
{
public:
diff --git a/plugins/TabSRMM/src/muchighlight.h b/plugins/TabSRMM/src/muchighlight.h index 0d43fb01e5..340b9e53f6 100644 --- a/plugins/TabSRMM/src/muchighlight.h +++ b/plugins/TabSRMM/src/muchighlight.h @@ -26,6 +26,8 @@ //
// highlighter class for multi user chats
+#pragma once
+
class CMUCHighlight {
public:
diff --git a/plugins/TabSRMM/src/templates.h b/plugins/TabSRMM/src/templates.h index 3394ea0f3e..e294636838 100644 --- a/plugins/TabSRMM/src/templates.h +++ b/plugins/TabSRMM/src/templates.h @@ -26,4 +26,6 @@ //
// templates for the message log...
+#pragma once
+
void LoadDefaultTemplates();
diff --git a/plugins/TabSRMM/src/typingnotify.h b/plugins/TabSRMM/src/typingnotify.h index 800cdb5930..3d298dae8b 100644 --- a/plugins/TabSRMM/src/typingnotify.h +++ b/plugins/TabSRMM/src/typingnotify.h @@ -1,3 +1,5 @@ +#pragma once
+
#define UM_SETDLGITEMINT 5674
#define TIMEOUT_MINVALUE -1
|