diff options
Diffstat (limited to 'plugins/HistoryStats/src/statistic.h')
-rw-r--r-- | plugins/HistoryStats/src/statistic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryStats/src/statistic.h b/plugins/HistoryStats/src/statistic.h index ee312619be..530ba57439 100644 --- a/plugins/HistoryStats/src/statistic.h +++ b/plugins/HistoryStats/src/statistic.h @@ -202,8 +202,8 @@ public: // file management
ext::string createFile(const ext::string& desiredName);
- bool newFile(const mu_text* fileExt, ext::string& writeFile, ext::string& finalURL);
- bool newFilePNG(ext::string& writeFile, ext::string& finalURL) { return newFile(muT(".png"), writeFile, finalURL); }
+ bool newFile(const TCHAR* fileExt, ext::string& writeFile, ext::string& finalURL);
+ bool newFilePNG(ext::string& writeFile, ext::string& finalURL) { return newFile(_T(".png"), writeFile, finalURL); }
bool newFilePNG(Canvas& canvas, ext::string& finalURL);
};
|