diff options
Diffstat (limited to 'plugins/TabSRMM/src')
-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
|