summaryrefslogtreecommitdiff
path: root/plugins/Folders/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-07-24 07:01:03 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-07-24 07:01:03 +0000
commit058d73ec95f3ba11678980ff8b80ab6bdda21668 (patch)
tree6bb9bd56d8e94e06e9bf50faab6237772eaf9d52 /plugins/Folders/src
parentf44cdbe4b569680ffa2e18c5e24f2ba5ed6b5c8f (diff)
folders: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14662 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Folders/src')
-rw-r--r--plugins/Folders/src/dlg_handlers.cpp2
-rw-r--r--plugins/Folders/src/events.cpp2
-rw-r--r--plugins/Folders/src/folderItem.cpp2
-rw-r--r--plugins/Folders/src/folderItem.h2
-rw-r--r--plugins/Folders/src/folders.cpp2
-rw-r--r--plugins/Folders/src/services.cpp2
-rw-r--r--plugins/Folders/src/stdafx.cxx (renamed from plugins/Folders/src/stdafx.cpp)2
-rw-r--r--plugins/Folders/src/stdafx.h (renamed from plugins/Folders/src/commonheaders.h)2
-rw-r--r--plugins/Folders/src/utils.cpp2
9 files changed, 7 insertions, 11 deletions
diff --git a/plugins/Folders/src/dlg_handlers.cpp b/plugins/Folders/src/dlg_handlers.cpp
index b5e6668912..32835dc6cc 100644
--- a/plugins/Folders/src/dlg_handlers.cpp
+++ b/plugins/Folders/src/dlg_handlers.cpp
@@ -1,4 +1,4 @@
-#include "commonheaders.h"
+#include "stdafx.h"
PFolderItem lastItem = NULL;
diff --git a/plugins/Folders/src/events.cpp b/plugins/Folders/src/events.cpp
index c3e1d5c941..db9bd46c1d 100644
--- a/plugins/Folders/src/events.cpp
+++ b/plugins/Folders/src/events.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static HANDLE hPathChanged;
diff --git a/plugins/Folders/src/folderItem.cpp b/plugins/Folders/src/folderItem.cpp
index 22043a172c..4da4164568 100644
--- a/plugins/Folders/src/folderItem.cpp
+++ b/plugins/Folders/src/folderItem.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
CFolderItem::CFolderItem(const char *sectionName, const char *name, const TCHAR *format, const TCHAR *userName)
{
diff --git a/plugins/Folders/src/folderItem.h b/plugins/Folders/src/folderItem.h
index ded5c12a6f..03b88f86e5 100644
--- a/plugins/Folders/src/folderItem.h
+++ b/plugins/Folders/src/folderItem.h
@@ -18,8 +18,6 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define _CRT_SECURE_NO_WARNINGS
-
#ifndef M_FOLDERS_FOLDER_ITEM_H
#define M_FOLDERS_FOLDER_ITEM_H
diff --git a/plugins/Folders/src/folders.cpp b/plugins/Folders/src/folders.cpp
index 80278cc187..ec41cd29fb 100644
--- a/plugins/Folders/src/folders.cpp
+++ b/plugins/Folders/src/folders.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
char ModuleName[] = "Folders";
HINSTANCE hInstance;
diff --git a/plugins/Folders/src/services.cpp b/plugins/Folders/src/services.cpp
index 9ee51cb1a2..ffe0b9665d 100644
--- a/plugins/Folders/src/services.cpp
+++ b/plugins/Folders/src/services.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
#define DEFAULT_SECTION "Unknown"
diff --git a/plugins/Folders/src/stdafx.cpp b/plugins/Folders/src/stdafx.cxx
index 048b14e9d2..6fb37564b7 100644
--- a/plugins/Folders/src/stdafx.cpp
+++ b/plugins/Folders/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 "commonheaders.h" \ No newline at end of file
+#include "stdafx.h" \ No newline at end of file
diff --git a/plugins/Folders/src/commonheaders.h b/plugins/Folders/src/stdafx.h
index ef29b5545c..148720d01d 100644
--- a/plugins/Folders/src/commonheaders.h
+++ b/plugins/Folders/src/stdafx.h
@@ -18,8 +18,6 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define _CRT_SECURE_NO_WARNINGS
-
#ifndef M_FOLDERS_COMMONHEADERS_H
#define M_FOLDERS_COMMONHEADERS_H
diff --git a/plugins/Folders/src/utils.cpp b/plugins/Folders/src/utils.cpp
index 60bbd4142c..97ffef2eb6 100644
--- a/plugins/Folders/src/utils.cpp
+++ b/plugins/Folders/src/utils.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
CMString ExpandPath(const TCHAR *format)
{