diff --git a/UpdCheck/UpdCheck.vcxproj b/UpdCheck/UpdCheck.vcxproj index f6e199b..fd2250a 100644 --- a/UpdCheck/UpdCheck.vcxproj +++ b/UpdCheck/UpdCheck.vcxproj @@ -116,7 +116,7 @@ - + Create Create Create @@ -126,7 +126,7 @@ - + diff --git a/UpdCheck/UpdCheck.vcxproj.filters b/UpdCheck/UpdCheck.vcxproj.filters index d234cb3..249e886 100644 --- a/UpdCheck/UpdCheck.vcxproj.filters +++ b/UpdCheck/UpdCheck.vcxproj.filters @@ -22,12 +22,12 @@ Source Files - + Source Files - + Header Files diff --git a/UpdCheck/main.cpp b/UpdCheck/main.cpp index a7c4e2c..64a1a3d 100644 --- a/UpdCheck/main.cpp +++ b/UpdCheck/main.cpp @@ -17,7 +17,7 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" /// diff --git a/UpdCheck/stdafx.cpp b/UpdCheck/pch.cpp similarity index 94% rename from UpdCheck/stdafx.cpp rename to UpdCheck/pch.cpp index 476d0ac..4772e1e 100644 --- a/UpdCheck/stdafx.cpp +++ b/UpdCheck/pch.cpp @@ -17,4 +17,4 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" diff --git a/UpdCheck/stdafx.h b/UpdCheck/pch.h similarity index 100% rename from UpdCheck/stdafx.h rename to UpdCheck/pch.h diff --git a/UpdPublish/UpdPublish.vcxproj b/UpdPublish/UpdPublish.vcxproj index 73b12c5..534bde1 100644 --- a/UpdPublish/UpdPublish.vcxproj +++ b/UpdPublish/UpdPublish.vcxproj @@ -121,7 +121,7 @@ - + Create Create Create @@ -131,7 +131,7 @@ - + diff --git a/UpdPublish/UpdPublish.vcxproj.filters b/UpdPublish/UpdPublish.vcxproj.filters index f8a4334..319316d 100644 --- a/UpdPublish/UpdPublish.vcxproj.filters +++ b/UpdPublish/UpdPublish.vcxproj.filters @@ -19,7 +19,7 @@ - + Source Files @@ -27,7 +27,7 @@ - + Header Files diff --git a/UpdPublish/main.cpp b/UpdPublish/main.cpp index d2ecd87..5dae8fa 100644 --- a/UpdPublish/main.cpp +++ b/UpdPublish/main.cpp @@ -17,7 +17,7 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" void UpdaterAddURL(wxXmlNode *elLocale, const wxString &url) diff --git a/UpdPublish/stdafx.cpp b/UpdPublish/pch.cpp similarity index 94% rename from UpdPublish/stdafx.cpp rename to UpdPublish/pch.cpp index 476d0ac..4772e1e 100644 --- a/UpdPublish/stdafx.cpp +++ b/UpdPublish/pch.cpp @@ -17,4 +17,4 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" diff --git a/UpdPublish/stdafx.h b/UpdPublish/pch.h similarity index 100% rename from UpdPublish/stdafx.h rename to UpdPublish/pch.h diff --git a/UpdSignXML/UpdSignXML.vcxproj b/UpdSignXML/UpdSignXML.vcxproj index 469d2da..a600e57 100644 --- a/UpdSignXML/UpdSignXML.vcxproj +++ b/UpdSignXML/UpdSignXML.vcxproj @@ -121,7 +121,7 @@ - + Create Create Create @@ -131,7 +131,7 @@ - + diff --git a/UpdSignXML/UpdSignXML.vcxproj.filters b/UpdSignXML/UpdSignXML.vcxproj.filters index defebd8..84763e1 100644 --- a/UpdSignXML/UpdSignXML.vcxproj.filters +++ b/UpdSignXML/UpdSignXML.vcxproj.filters @@ -19,7 +19,7 @@ - + Source Files @@ -27,7 +27,7 @@ - + Header Files diff --git a/UpdSignXML/main.cpp b/UpdSignXML/main.cpp index e17e9fc..1efb4a7 100644 --- a/UpdSignXML/main.cpp +++ b/UpdSignXML/main.cpp @@ -17,7 +17,7 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" /// diff --git a/UpdSignXML/stdafx.cpp b/UpdSignXML/pch.cpp similarity index 94% rename from UpdSignXML/stdafx.cpp rename to UpdSignXML/pch.cpp index 476d0ac..4772e1e 100644 --- a/UpdSignXML/stdafx.cpp +++ b/UpdSignXML/pch.cpp @@ -17,4 +17,4 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" diff --git a/UpdSignXML/stdafx.h b/UpdSignXML/pch.h similarity index 100% rename from UpdSignXML/stdafx.h rename to UpdSignXML/pch.h diff --git a/Updater/build/Updater.vcxproj b/Updater/build/Updater.vcxproj index 40d3783..219b7f6 100644 --- a/Updater/build/Updater.vcxproj +++ b/Updater/build/Updater.vcxproj @@ -28,7 +28,7 @@ - + Create Create Create @@ -41,7 +41,7 @@ - + diff --git a/Updater/build/Updater.vcxproj.filters b/Updater/build/Updater.vcxproj.filters index 5117ec7..23e80fd 100644 --- a/Updater/build/Updater.vcxproj.filters +++ b/Updater/build/Updater.vcxproj.filters @@ -19,7 +19,7 @@ - + Source Files @@ -30,7 +30,7 @@ - + Header Files diff --git a/Updater/src/chkthread.cpp b/Updater/src/chkthread.cpp index a4ff761..aadb071 100644 --- a/Updater/src/chkthread.cpp +++ b/Updater/src/chkthread.cpp @@ -17,7 +17,7 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" ////////////////////////////////////////////////////////////////////////// // wxEVT_UPDATER_CHECK_COMPLETE diff --git a/Updater/src/main.cpp b/Updater/src/main.cpp index 5d48f4a..fce9549 100644 --- a/Updater/src/main.cpp +++ b/Updater/src/main.cpp @@ -17,7 +17,7 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" /// diff --git a/Updater/src/stdafx.cpp b/Updater/src/pch.cpp similarity index 94% rename from Updater/src/stdafx.cpp rename to Updater/src/pch.cpp index 476d0ac..4772e1e 100644 --- a/Updater/src/stdafx.cpp +++ b/Updater/src/pch.cpp @@ -17,4 +17,4 @@ along with Updater. If not, see . */ -#include "stdafx.h" +#include "pch.h" diff --git a/Updater/src/stdafx.h b/Updater/src/pch.h similarity index 100% rename from Updater/src/stdafx.h rename to Updater/src/pch.h