From 6e53dfca72b932c4bdcd7aa02ca62bf8b2630eac Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 26 Jul 2016 09:20:25 +0000 Subject: less TCHARs: - TCHAR is replaced with wchar_t everywhere; - LPGENT replaced with either LPGENW or LPGEN; - fixes for ANSI plugins that improperly used _t functions; - TCHAR *t removed from MAllStrings; - ptszGroup, ptszTitle & ptszTab in OPTIONSDIALOGPAGE replaced with pwsz* git-svn-id: http://svn.miranda-ng.org/main/trunk@17133 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HistoryStats/src/column.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/HistoryStats/src/column.h') diff --git a/plugins/HistoryStats/src/column.h b/plugins/HistoryStats/src/column.h index 1c1aaca70e..bb03bc1291 100644 --- a/plugins/HistoryStats/src/column.h +++ b/plugins/HistoryStats/src/column.h @@ -38,8 +38,8 @@ private: { public: ext::string m_UID; - const TCHAR* m_Title; - const TCHAR* m_Description; + const wchar_t* m_Title; + const wchar_t* m_Description; FactoryBase* m_pFactory; }; @@ -170,9 +170,9 @@ public: /* * public interface for virtual functions */ - const TCHAR* getUID() const { return impl_getUID(); } - const TCHAR* getTitle() const { return impl_getTitle(); } - const TCHAR* getDescription() const { return impl_getDescription(); } + const wchar_t* getUID() const { return impl_getUID(); } + const wchar_t* getTitle() const { return impl_getTitle(); } + const wchar_t* getDescription() const { return impl_getDescription(); } void copyConfig(const Column* pSource) { impl_copyConfig(pSource); } int getFeatures() const { return impl_getFeatures(); } void configRead(const SettingsTree& settings) { impl_configRead(settings); } @@ -206,19 +206,19 @@ protected: * Returns a unique ID for column. * [virtual/abstract] */ - virtual const TCHAR* impl_getUID() const = 0; + virtual const wchar_t* impl_getUID() const = 0; /* * Returns the title for the column. * [virtual/abstract] */ - virtual const TCHAR* impl_getTitle() const = 0; + virtual const wchar_t* impl_getTitle() const = 0; /* * Returns the description for the column. * [virtual/abstract] */ - virtual const TCHAR* impl_getDescription() const = 0; + virtual const wchar_t* impl_getDescription() const = 0; /* * Creates a exact copy of the column. -- cgit v1.2.3