1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Rename txWidestringWrapper.h to txWidestringHelper.h

Correct #include
This commit is contained in:
Sergey Lipskiy 2021-10-24 17:20:53 +07:00
parent 71788c320d
commit cc6fdb4670
2 changed files with 2 additions and 6 deletions

View File

@ -25,7 +25,7 @@
#define __INTERNAL_H__ #define __INTERNAL_H__
#include "TxFilterExport.h" #include "TxFilterExport.h"
#include "txWidestringWrapper.h" #include "txWidestringHelper.h"
#include <Graphics/Parameters.h> #include <Graphics/Parameters.h>

View File

@ -1,6 +1,4 @@
#ifndef ___TXWIDESCREENWRAPPER_H__ #pragma once
#define ___TXWIDESCREENWRAPPER_H__
#include <string> #include <string>
#include <algorithm> #include <algorithm>
@ -15,5 +13,3 @@ void removeColon(tx_wstring& _s)
{ {
std::replace(_s.begin(), _s.end(), L':', L'-'); std::replace(_s.begin(), _s.end(), L':', L'-');
} }
#endif // ___TXWIDESCREENWRAPPER_H__