Index: src/libchcore/TLogger.cpp =================================================================== diff -u -N -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 -ra27d1acf1bda3c25b6dcce0d0eb0278009ce63ae --- src/libchcore/TLogger.cpp (.../TLogger.cpp) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) +++ src/libchcore/TLogger.cpp (.../TLogger.cpp) (revision a27d1acf1bda3c25b6dcce0d0eb0278009ce63ae) @@ -58,7 +58,7 @@ /// @brief Logs an information to file (debug level). /// @param[in] pszText Text to be logged. // ============================================================================ - void TLogger::LogDebug(const tchar_t* pszText) + void TLogger::LogDebug(const wchar_t* pszText) { BOOST_ASSERT(pszText); if (!pszText) @@ -76,7 +76,7 @@ /// @brief Logs an information to the file (info level). /// @param[in] pszText Text to be logged. // ============================================================================ - void TLogger::LogInfo(const tchar_t* pszText) + void TLogger::LogInfo(const wchar_t* pszText) { BOOST_ASSERT(pszText); if (!pszText) @@ -94,7 +94,7 @@ /// @brief Logs an information to the file (info level). /// @param[in] pszText Text to be logged. // ============================================================================ - void TLogger::LogWarning(const tchar_t* pszText) + void TLogger::LogWarning(const wchar_t* pszText) { BOOST_ASSERT(pszText); if (!pszText) @@ -112,7 +112,7 @@ /// @brief Logs an information to the file (info level). /// @param[in] pszText Text to be logged. // ============================================================================ - void TLogger::LogError(const tchar_t* pszText) + void TLogger::LogError(const wchar_t* pszText) { BOOST_ASSERT(pszText); if (!pszText)