diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-03 14:17:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-03 14:17:25 +0000 |
commit | 31ad5a2b294f59b5a64a8e7d8383669baeb7fdd0 (patch) | |
tree | 50958a041b03dac17c38684c831acd8f46f74631 /src/modules/utils | |
parent | 4936520d4bb4f2c9c2fdbaa565874a99438a3992 (diff) |
let VS2010 be damnned
git-svn-id: http://svn.miranda-ng.org/main/trunk@285 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/utils')
-rw-r--r-- | src/modules/utils/bmpfilter.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/colourpicker.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/hyperlink.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/imgconv.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/md5.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/openurl.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/path.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/resizer.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/sha1.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/timeutils.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/timezones.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/utf.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/utils.cpp | 2 | ||||
-rw-r--r-- | src/modules/utils/windowlist.cpp | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/src/modules/utils/bmpfilter.cpp b/src/modules/utils/bmpfilter.cpp index 6f92eba126..2496c2dcc2 100644 --- a/src/modules/utils/bmpfilter.cpp +++ b/src/modules/utils/bmpfilter.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
#include <olectl.h>
#include "m_png.h"
diff --git a/src/modules/utils/colourpicker.cpp b/src/modules/utils/colourpicker.cpp index ec1a87153c..0f2f9bf8f8 100644 --- a/src/modules/utils/colourpicker.cpp +++ b/src/modules/utils/colourpicker.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
static LRESULT CALLBACK ColourPickerWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
diff --git a/src/modules/utils/hyperlink.cpp b/src/modules/utils/hyperlink.cpp index 62d307a958..7ed16f6857 100644 --- a/src/modules/utils/hyperlink.cpp +++ b/src/modules/utils/hyperlink.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
struct HyperlinkWndData {
HFONT hEnableFont,hDisableFont;
diff --git a/src/modules/utils/imgconv.cpp b/src/modules/utils/imgconv.cpp index e25953e471..431ae3343d 100644 --- a/src/modules/utils/imgconv.cpp +++ b/src/modules/utils/imgconv.cpp @@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
typedef DWORD ARGB;
diff --git a/src/modules/utils/md5.cpp b/src/modules/utils/md5.cpp index 0fcaccb9ae..3fb835abdd 100644 --- a/src/modules/utils/md5.cpp +++ b/src/modules/utils/md5.cpp @@ -53,7 +53,7 @@ // (C) 2005 Joe @ Whale - changed to compile with Miranda
-#include "commonheaders.h"
+#include "..\..\core\commonheaders.h"
#define T_MASK ((mir_md5_word_t)~0)
diff --git a/src/modules/utils/openurl.cpp b/src/modules/utils/openurl.cpp index ef66d89f8c..02ea139090 100644 --- a/src/modules/utils/openurl.cpp +++ b/src/modules/utils/openurl.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
#include <ctype.h>
#define DDEMESSAGETIMEOUT 1000
diff --git a/src/modules/utils/path.cpp b/src/modules/utils/path.cpp index 80333a3075..ff6a5550bb 100644 --- a/src/modules/utils/path.cpp +++ b/src/modules/utils/path.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
#include "../database/profilemanager.h"
#include "../srfile/file.h"
diff --git a/src/modules/utils/resizer.cpp b/src/modules/utils/resizer.cpp index ea0daa057a..31806f644e 100644 --- a/src/modules/utils/resizer.cpp +++ b/src/modules/utils/resizer.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
typedef struct {
DWORD helpID;
diff --git a/src/modules/utils/sha1.cpp b/src/modules/utils/sha1.cpp index c89a60ca46..3900d67fff 100644 --- a/src/modules/utils/sha1.cpp +++ b/src/modules/utils/sha1.cpp @@ -34,7 +34,7 @@ *
* ***** END LICENSE BLOCK ***** */
-#include "commonheaders.h"
+#include "..\..\core\commonheaders.h"
static void shaHashBlock(mir_sha1_ctx *ctx);
diff --git a/src/modules/utils/timeutils.cpp b/src/modules/utils/timeutils.cpp index a0d4c02e46..0b39d47ea9 100644 --- a/src/modules/utils/timeutils.cpp +++ b/src/modules/utils/timeutils.cpp @@ -23,7 +23,7 @@ implements services to handle location - based timezones, instead of simple UTC offsets.
*/
-#include "commonheaders.h"
+#include "..\..\core\commonheaders.h"
//KB167296
void UnixTimeToFileTime(time_t ts, LPFILETIME pft)
diff --git a/src/modules/utils/timezones.cpp b/src/modules/utils/timezones.cpp index 7d22cbec1e..5c2a2d800d 100644 --- a/src/modules/utils/timezones.cpp +++ b/src/modules/utils/timezones.cpp @@ -23,7 +23,7 @@ implements services to handle location - based timezones, instead of simple UTC offsets.
*/
-#include <commonheaders.h>
+#include <..\..\core\commonheaders.h>
TIME_API tmi;
diff --git a/src/modules/utils/utf.cpp b/src/modules/utils/utf.cpp index ad6683d2ed..670f9f5edf 100644 --- a/src/modules/utils/utf.cpp +++ b/src/modules/utils/utf.cpp @@ -24,7 +24,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 "..\..\core\commonheaders.h"
/* number of following bytes in sequence based on first byte value (for bytes above 0x7f) */
static const char utf8_length[128] =
diff --git a/src/modules/utils/utils.cpp b/src/modules/utils/utils.cpp index 9e81b3084b..bbd6deb19f 100644 --- a/src/modules/utils/utils.cpp +++ b/src/modules/utils/utils.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
INT_PTR ResizeDialog(WPARAM wParam,LPARAM lParam);
int InitOpenUrl(void);
diff --git a/src/modules/utils/windowlist.cpp b/src/modules/utils/windowlist.cpp index b7ea59eb58..ac1e34f569 100644 --- a/src/modules/utils/windowlist.cpp +++ b/src/modules/utils/windowlist.cpp @@ -20,7 +20,7 @@ You should have received a copy of the GNU General Public License 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 "..\..\core\commonheaders.h"
static WINDOWLISTENTRY *windowList=NULL;
static int windowListCount=0;
|