diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 23:40:44 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 23:40:44 +0000 |
commit | 9b3b48266470ccda4e270c6a81e91b1319b4ca22 (patch) | |
tree | e7623c3993954f5b615d216f7d92877a1f7b8ee8 /plugins/AVS/src | |
parent | 08d76ccf7db491a94368b2ec81e825bc93df9fce (diff) |
AVS - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS/src')
-rw-r--r-- | plugins/AVS/src/acc.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/cache.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/image_utils.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/poll.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/services.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/stdafx.cxx (renamed from plugins/AVS/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/AVS/src/stdafx.h (renamed from plugins/AVS/src/commonheaders.h) | 0 | ||||
-rw-r--r-- | plugins/AVS/src/utils.cpp | 2 |
10 files changed, 9 insertions, 9 deletions
diff --git a/plugins/AVS/src/acc.cpp b/plugins/AVS/src/acc.cpp index 272f55cc96..75ba7bdbf9 100644 --- a/plugins/AVS/src/acc.cpp +++ b/plugins/AVS/src/acc.cpp @@ -22,7 +22,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 DM_AVATARCHANGED (WM_USER + 20)
#define DM_MYAVATARCHANGED (WM_USER + 21)
diff --git a/plugins/AVS/src/cache.cpp b/plugins/AVS/src/cache.cpp index a81ca58e99..87c6c4e7ca 100644 --- a/plugins/AVS/src/cache.cpp +++ b/plugins/AVS/src/cache.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
CacheNode::CacheNode()
{
diff --git a/plugins/AVS/src/image_utils.cpp b/plugins/AVS/src/image_utils.cpp index 520e077254..1f251954ed 100644 --- a/plugins/AVS/src/image_utils.cpp +++ b/plugins/AVS/src/image_utils.cpp @@ -1,4 +1,4 @@ -#include "commonheaders.h"
+#include "stdafx.h"
#include "image_utils.h"
#define GET_PIXEL(__P__, __X__, __Y__) ( __P__ + width * 4 * (__Y__) + 4 * (__X__))
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 426c1dd8d2..1c33df43ae 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -22,7 +22,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"
CLIST_INTERFACE *pcli;
diff --git a/plugins/AVS/src/options.cpp b/plugins/AVS/src/options.cpp index 36a6af0d05..19f2068aaa 100644 --- a/plugins/AVS/src/options.cpp +++ b/plugins/AVS/src/options.cpp @@ -22,7 +22,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 DM_SETAVATARNAME (WM_USER + 10) #define DM_REALODAVATAR (WM_USER + 11) diff --git a/plugins/AVS/src/poll.cpp b/plugins/AVS/src/poll.cpp index 45ed5067b7..4b4c5511e3 100644 --- a/plugins/AVS/src/poll.cpp +++ b/plugins/AVS/src/poll.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
/*
It has 1 queue:
diff --git a/plugins/AVS/src/services.cpp b/plugins/AVS/src/services.cpp index 3072055a6d..2760420853 100644 --- a/plugins/AVS/src/services.cpp +++ b/plugins/AVS/src/services.cpp @@ -22,7 +22,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"
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/AVS/src/stdafx.cpp b/plugins/AVS/src/stdafx.cxx index 048b14e9d2..6fb37564b7 100644 --- a/plugins/AVS/src/stdafx.cpp +++ b/plugins/AVS/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/AVS/src/commonheaders.h b/plugins/AVS/src/stdafx.h index 7027783b64..7027783b64 100644 --- a/plugins/AVS/src/commonheaders.h +++ b/plugins/AVS/src/stdafx.h diff --git a/plugins/AVS/src/utils.cpp b/plugins/AVS/src/utils.cpp index c0a90ee325..70d0349948 100644 --- a/plugins/AVS/src/utils.cpp +++ b/plugins/AVS/src/utils.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
void mir_sleep(int time)
{
|