projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't merge msw/it.po with wxstd.pot during 'make allmo', it's manually maintained
[wxWidgets.git]
/
src
/
msw
/
stdpaths.cpp
diff --git
a/src/msw/stdpaths.cpp
b/src/msw/stdpaths.cpp
index 7eef3af3a0c8dbca0ef6dfa162a57c77b3a709af..1f21d6d5aefb944ac5c6a212a10cbc744a752bd5 100644
(file)
--- a/
src/msw/stdpaths.cpp
+++ b/
src/msw/stdpaths.cpp
@@
-26,15
+26,15
@@
#if wxUSE_STDPATHS
#if wxUSE_STDPATHS
+#include "wx/stdpaths.h"
+
#ifndef WX_PRECOMP
#ifndef WX_PRECOMP
- #include "wx/
app
.h"
+ #include "wx/
utils
.h"
#endif //WX_PRECOMP
#include "wx/dynlib.h"
#include "wx/filename.h"
#endif //WX_PRECOMP
#include "wx/dynlib.h"
#include "wx/filename.h"
-#include "wx/stdpaths.h"
-
#include "wx/msw/private.h"
#include "wx/msw/wrapshl.h"
#include "wx/msw/private.h"
#include "wx/msw/wrapshl.h"
@@
-50,7
+50,7
@@
typedef HRESULT (WINAPI *SHGetSpecialFolderPath_t)(HWND, LPTSTR, int, BOOL);
// ----------------------------------------------------------------------------
// used in our wxLogTrace messages
// ----------------------------------------------------------------------------
// used in our wxLogTrace messages
-static const wxChar *TRACE_MASK = _T("stdpaths");
+#define TRACE_MASK _T("stdpaths")
#ifndef CSIDL_APPDATA
#define CSIDL_APPDATA 0x001a
#ifndef CSIDL_APPDATA
#define CSIDL_APPDATA 0x001a
@@
-274,9
+274,14
@@
wxString wxStandardPaths::GetDocumentsDir() const
// public functions
// ----------------------------------------------------------------------------
// public functions
// ----------------------------------------------------------------------------
+wxString wxStandardPaths::GetExecutablePath() const
+{
+ return wxGetFullModuleName();
+}
+
wxString wxStandardPaths::GetConfigDir() const
{
wxString wxStandardPaths::GetConfigDir() const
{
- return AppendApp
Name
(DoGetDirectory(CSIDL_COMMON_APPDATA));
+ return AppendApp
Info
(DoGetDirectory(CSIDL_COMMON_APPDATA));
}
wxString wxStandardPaths::GetUserConfigDir() const
}
wxString wxStandardPaths::GetUserConfigDir() const
@@
-293,12
+298,12
@@
wxString wxStandardPaths::GetDataDir() const
wxString wxStandardPaths::GetUserDataDir() const
{
wxString wxStandardPaths::GetUserDataDir() const
{
- return AppendApp
Name
(GetUserConfigDir());
+ return AppendApp
Info
(GetUserConfigDir());
}
wxString wxStandardPaths::GetUserLocalDataDir() const
{
}
wxString wxStandardPaths::GetUserLocalDataDir() const
{
- return AppendApp
Name
(DoGetDirectory(CSIDL_LOCAL_APPDATA));
+ return AppendApp
Info
(DoGetDirectory(CSIDL_LOCAL_APPDATA));
}
wxString wxStandardPaths::GetPluginsDir() const
}
wxString wxStandardPaths::GetPluginsDir() const