// Created: 2004-11-06
// RCS-ID: $Id$
// Copyright: (c) 2004 Stefan Neis <Stefan.Neis@t-online.de>
-// License: wxWindows license
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
{
if ( m_prefix.empty() )
{
- wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this);
+ wxStandardPaths *self = const_cast<wxStandardPaths *>(this);
- self->m_prefix = _T("/usr/local");
+ self->m_prefix = wxT("/usr/local");
}
return m_prefix;
}
wxString wxStandardPaths::GetDataDir() const
{
- return GetInstallPrefix() + _T("\\data");
+ return GetInstallPrefix() + wxT("\\data");
}
wxString wxStandardPaths::GetUserDataDir() const
{
- return AppendAppInfo(wxFileName::GetHomeDir() + _T("\\."));
+ return AppendAppInfo(wxFileName::GetHomeDir() + wxT("\\."));
}
wxString wxStandardPaths::GetPluginsDir() const