diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 07:48:38 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 07:48:38 +0000 |
commit | 98eb3655b536fb45f97b4e6112010cf9d95fb7ac (patch) | |
tree | 203a090031affb18d043272a3adaa571fb5e1827 /plugins/NoHistory/src | |
parent | 25451e77f82086f283b9b3e1be64c7fef31bdf78 (diff) |
NoHistory: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14710 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NoHistory/src')
-rw-r--r-- | plugins/NoHistory/src/dllmain.cpp | 2 | ||||
-rw-r--r-- | plugins/NoHistory/src/icons.cpp | 2 | ||||
-rw-r--r-- | plugins/NoHistory/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/NoHistory/src/stdafx.cxx (renamed from plugins/NoHistory/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/NoHistory/src/stdafx.h (renamed from plugins/NoHistory/src/common.h) | 0 |
5 files changed, 4 insertions, 4 deletions
diff --git a/plugins/NoHistory/src/dllmain.cpp b/plugins/NoHistory/src/dllmain.cpp index 02040b72c8..7b08d50e2e 100644 --- a/plugins/NoHistory/src/dllmain.cpp +++ b/plugins/NoHistory/src/dllmain.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
HINSTANCE hInst;
int hLangpack = 0;
diff --git a/plugins/NoHistory/src/icons.cpp b/plugins/NoHistory/src/icons.cpp index e0835972cf..ab1f3b9f4c 100644 --- a/plugins/NoHistory/src/icons.cpp +++ b/plugins/NoHistory/src/icons.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
HICON hIconRemove, hIconKeep, hIconClear;
diff --git a/plugins/NoHistory/src/options.cpp b/plugins/NoHistory/src/options.cpp index 8a31611b15..4be4ad59d6 100644 --- a/plugins/NoHistory/src/options.cpp +++ b/plugins/NoHistory/src/options.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
static void SetListGroupIcons(HWND hwndList,HANDLE hFirstItem,HANDLE hParentItem,int *groupChildCount)
{
diff --git a/plugins/NoHistory/src/stdafx.cpp b/plugins/NoHistory/src/stdafx.cxx index 41c4ae06bf..6fb37564b7 100644 --- a/plugins/NoHistory/src/stdafx.cpp +++ b/plugins/NoHistory/src/stdafx.cxx @@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "Common.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/NoHistory/src/common.h b/plugins/NoHistory/src/stdafx.h index 5f2476a8aa..5f2476a8aa 100644 --- a/plugins/NoHistory/src/common.h +++ b/plugins/NoHistory/src/stdafx.h |