summaryrefslogtreecommitdiff
path: root/plugins/Toaster/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Toaster/src')
-rw-r--r--plugins/Toaster/src/main.cpp2
-rw-r--r--plugins/Toaster/src/options.cpp2
-rw-r--r--plugins/Toaster/src/options.h2
-rw-r--r--plugins/Toaster/src/resource.h2
-rw-r--r--plugins/Toaster/src/services.cpp2
-rw-r--r--plugins/Toaster/src/stdafx.cxx2
-rw-r--r--plugins/Toaster/src/stdafx.h2
-rw-r--r--plugins/Toaster/src/string_reference_wrapper.h2
-rw-r--r--plugins/Toaster/src/structs.h2
-rw-r--r--plugins/Toaster/src/toast_notification.cpp2
-rw-r--r--plugins/Toaster/src/toast_notification.h2
-rw-r--r--plugins/Toaster/src/utils.cpp2
-rw-r--r--plugins/Toaster/src/utils.h2
-rw-r--r--plugins/Toaster/src/version.h2
14 files changed, 14 insertions, 14 deletions
diff --git a/plugins/Toaster/src/main.cpp b/plugins/Toaster/src/main.cpp
index fe4d45943e..9a101c5d1d 100644
--- a/plugins/Toaster/src/main.cpp
+++ b/plugins/Toaster/src/main.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
int hLangpack;
diff --git a/plugins/Toaster/src/options.cpp b/plugins/Toaster/src/options.cpp
index 9d0c0d4034..c380f35c85 100644
--- a/plugins/Toaster/src/options.cpp
+++ b/plugins/Toaster/src/options.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
COptions::COptions()
: CDlgBase(g_hInstance, IDD_OPTIONS_MAIN),
diff --git a/plugins/Toaster/src/options.h b/plugins/Toaster/src/options.h
index 73d50a9877..b66af1f27f 100644
--- a/plugins/Toaster/src/options.h
+++ b/plugins/Toaster/src/options.h
@@ -1,4 +1,4 @@
-#ifndef _OPTIONS_H_
+#ifndef _OPTIONS_H_
#define _OPTIONS_H_
class COptions : public CDlgBase
diff --git a/plugins/Toaster/src/resource.h b/plugins/Toaster/src/resource.h
index 53a9230843..acafd58867 100644
--- a/plugins/Toaster/src/resource.h
+++ b/plugins/Toaster/src/resource.h
@@ -1,4 +1,4 @@
-//{{NO_DEPENDENCIES}}
+//{{NO_DEPENDENCIES}}
// Включаемый файл, созданный в Microsoft Visual C++.
// Используется d:\Others\SVN\MirandaNG\trunk\plugins\Toaster\res\resource.rc
//
diff --git a/plugins/Toaster/src/services.cpp b/plugins/Toaster/src/services.cpp
index 3d1dbd2040..894d6c3c42 100644
--- a/plugins/Toaster/src/services.cpp
+++ b/plugins/Toaster/src/services.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
mir_cs csNotifications;
OBJLIST<ToastNotification> lstNotifications(2, PtrKeySortT);
diff --git a/plugins/Toaster/src/stdafx.cxx b/plugins/Toaster/src/stdafx.cxx
index fd4f341c7b..d1303f3984 100644
--- a/plugins/Toaster/src/stdafx.cxx
+++ b/plugins/Toaster/src/stdafx.cxx
@@ -1 +1 @@
-#include "stdafx.h"
+#include "stdafx.h"
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h
index 06f2ee3bef..d1fee95297 100644
--- a/plugins/Toaster/src/stdafx.h
+++ b/plugins/Toaster/src/stdafx.h
@@ -1,4 +1,4 @@
-#ifndef _COMMON_H_
+#ifndef _COMMON_H_
#define _COMMON_H_
#pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
diff --git a/plugins/Toaster/src/string_reference_wrapper.h b/plugins/Toaster/src/string_reference_wrapper.h
index addfb32394..30c2f023a4 100644
--- a/plugins/Toaster/src/string_reference_wrapper.h
+++ b/plugins/Toaster/src/string_reference_wrapper.h
@@ -1,4 +1,4 @@
-#pragma once
+#pragma once
class StringReferenceWrapper
{
diff --git a/plugins/Toaster/src/structs.h b/plugins/Toaster/src/structs.h
index 96900ce785..53a441096d 100644
--- a/plugins/Toaster/src/structs.h
+++ b/plugins/Toaster/src/structs.h
@@ -1,4 +1,4 @@
-#pragma once
+#pragma once
struct ToastData : public MZeroedObject
{
diff --git a/plugins/Toaster/src/toast_notification.cpp b/plugins/Toaster/src/toast_notification.cpp
index 56eae765e6..e45d6d5d0d 100644
--- a/plugins/Toaster/src/toast_notification.cpp
+++ b/plugins/Toaster/src/toast_notification.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
#include <wrl.h>
using namespace Microsoft::WRL;
diff --git a/plugins/Toaster/src/toast_notification.h b/plugins/Toaster/src/toast_notification.h
index 812c361810..36e1e4596a 100644
--- a/plugins/Toaster/src/toast_notification.h
+++ b/plugins/Toaster/src/toast_notification.h
@@ -1,4 +1,4 @@
-#pragma once
+#pragma once
typedef __FITypedEventHandler_2_Windows__CUI__CNotifications__CToastNotification_IInspectable ToastActivationHandler;
typedef __FITypedEventHandler_2_Windows__CUI__CNotifications__CToastNotification_Windows__CUI__CNotifications__CToastDismissedEventArgs ToastDismissHandler;
diff --git a/plugins/Toaster/src/utils.cpp b/plugins/Toaster/src/utils.cpp
index 7726eec8c5..00e4977163 100644
--- a/plugins/Toaster/src/utils.cpp
+++ b/plugins/Toaster/src/utils.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "stdafx.h"
#define SHORTCUT_PATH "\\Microsoft\\Windows\\Start Menu\\Programs\\Miranda NG.lnk"
diff --git a/plugins/Toaster/src/utils.h b/plugins/Toaster/src/utils.h
index 2aa4802b8c..72098bddba 100644
--- a/plugins/Toaster/src/utils.h
+++ b/plugins/Toaster/src/utils.h
@@ -1,4 +1,4 @@
-#pragma once
+#pragma once
DEFINE_PROPERTYKEY(PKEY_AppUserModel_ID, 0x9F4C2855, 0x9F79, 0x4B39, 0xA8, 0xD0, 0xE1, 0xD4, 0x2D, 0xE1, 0xD5, 0xF3, 5);
HRESULT TryCreateShortcut();
diff --git a/plugins/Toaster/src/version.h b/plugins/Toaster/src/version.h
index ecd1e63774..3eb095533b 100644
--- a/plugins/Toaster/src/version.h
+++ b/plugins/Toaster/src/version.h
@@ -1,4 +1,4 @@
-#define __MAJOR_VERSION 0
+#define __MAJOR_VERSION 0
#define __MINOR_VERSION 11
#define __RELEASE_NUM 2
#define __BUILD_NUM 0