This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
93 lines
2.4 KiB
C++
93 lines
2.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/os2/stdpaths.cpp
|
|
// Purpose: wxStandardPaths implementation for OS/2 systems
|
|
// Author: Stefan Neis
|
|
// Modified by:
|
|
// Created: 2004-11-06
|
|
// Copyright: (c) 2004 Stefan Neis <Stefan.Neis@t-online.de>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// for compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_STDPATHS
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/app.h"
|
|
#endif //WX_PRECOMP
|
|
|
|
#include "wx/filename.h"
|
|
|
|
#include "wx/stdpaths.h"
|
|
|
|
|
|
// ============================================================================
|
|
// wxStandardPaths implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// prefix management
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxString wxStandardPaths::m_prefix;
|
|
|
|
void wxStandardPaths::SetInstallPrefix(const wxString& prefix)
|
|
{
|
|
m_prefix = prefix;
|
|
}
|
|
|
|
wxString wxStandardPaths::GetInstallPrefix() const
|
|
{
|
|
if ( m_prefix.empty() )
|
|
{
|
|
wxStandardPaths *self = const_cast<wxStandardPaths *>(this);
|
|
|
|
self->m_prefix = wxT("/usr/local");
|
|
}
|
|
return m_prefix;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// public functions
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxString wxStandardPaths::GetConfigDir() const
|
|
{
|
|
return m_prefix;
|
|
}
|
|
|
|
wxString wxStandardPaths::GetUserConfigDir() const
|
|
{
|
|
return wxFileName::GetHomeDir();
|
|
}
|
|
|
|
wxString wxStandardPaths::GetDataDir() const
|
|
{
|
|
return GetInstallPrefix() + wxT("\\data");
|
|
}
|
|
|
|
wxString wxStandardPaths::GetUserDataDir() const
|
|
{
|
|
return AppendAppInfo(wxFileName::GetHomeDir() + wxT("\\."));
|
|
}
|
|
|
|
wxString wxStandardPaths::GetPluginsDir() const
|
|
{
|
|
return wxString();
|
|
}
|
|
|
|
#endif // wxUSE_STDPATHS
|