Changeset 64d42de in nscp for modules/CheckExternalScripts


Ignore:
Timestamp:
08/11/10 10:15:50 (3 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
184d575
Parents:
294b37b
Message:

Some fixes for unix build

Location:
modules/CheckExternalScripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • modules/CheckExternalScripts/CheckExternalScripts.cpp

    r5735dda r64d42de  
    2222#include "CheckExternalScripts.h" 
    2323#include <time.h> 
     24#include <string> 
    2425 
    2526#include <settings/macros.h> 
     
    131132      std::map<std::wstring,std::wstring>::const_iterator cit = wrappers.find(type); 
    132133      if (cit == wrappers.end()) { 
    133         NSC_LOG_ERROR_STD(_T("Failed to find wrappings for: ") + type + _T(" (" + (*it) + _T(")"))); 
     134        NSC_LOG_ERROR_STD(_T("Failed to find wrappings for: ") + type + _T(" (") + (*it) + _T(")")); 
    134135      } else { 
    135136        addWrappedCommand((*it), (*cit).second, val); 
  • modules/CheckExternalScripts/stdafx.h

    rcad08fb r64d42de  
    2727#include <boost/lexical_cast.hpp> 
    2828 
     29#include <config.h> 
     30#include <unicode_char.hpp> 
    2931#include <types.hpp> 
    3032#include <NSCAPI.h> 
Note: See TracChangeset for help on using the changeset viewer.