projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Copy all needed files for the debian source dist
[wxWidgets.git]
/
src
/
os2
/
utils.cpp
diff --git
a/src/os2/utils.cpp
b/src/os2/utils.cpp
index 67e5fdad7841b10a2a14ad8d021340ffab6aa96b..622673e7f9ea062e6f818c680b824c1dfe75201a 100644
(file)
--- a/
src/os2/utils.cpp
+++ b/
src/os2/utils.cpp
@@
-83,13
+83,13
@@
bool wxGetHostName(
if ((zSysname = wxGetenv(_T("SYSTEM_NAME"))) == NULL)
{
if ((zSysname = wxGetenv(_T("SYSTEM_NAME"))) == NULL)
{
-
ULONG n =
::PrfQueryProfileString( HINI_PROFILE
-
,(PSZ)WX_SECTION
-
,(PSZ)eHOSTNAME
-
,(PSZ)zDefaultHost
-
,(void*)zBuf
-
,(ULONG)nMaxSize - 1
-
);
+ ::PrfQueryProfileString( HINI_PROFILE
+ ,(PSZ)WX_SECTION
+ ,(PSZ)eHOSTNAME
+ ,(PSZ)zDefaultHost
+ ,(void*)zBuf
+ ,(ULONG)nMaxSize - 1
+ );
}
else
wxStrncpy(zBuf, zSysname, nMaxSize - 1);
}
else
wxStrncpy(zBuf, zSysname, nMaxSize - 1);
@@
-380,18
+380,24
@@
const wxChar* wxGetHomeDir(
wxString& rStrDir = *pStr;
// OS/2 has no idea about home,
wxString& rStrDir = *pStr;
// OS/2 has no idea about home,
- // so use the working directory instead?
+ // so use the working directory instead.
+ // However, we might have a valid HOME directory,
+ // as is used on many machines that have unix utilities
+ // on them, so we should use that, if available.
// 256 was taken from os2def.h
#ifndef MAX_PATH
# define MAX_PATH 256
#endif
// 256 was taken from os2def.h
#ifndef MAX_PATH
# define MAX_PATH 256
#endif
- char zDirName[256];
- ULONG ulDirLen;
+ const wxChar *szHome = wxGetenv("HOME");
+ if ( szHome == NULL ) {
+ // we're homeless, use current directory.
+ rStrDir = wxT(".");
+ }
+ else
+ rStrDir = szHome;
- ::DosQueryCurrentDir(0, zDirName, &ulDirLen);
- rStrDir = zDirName;
return rStrDir.c_str();
}
return rStrDir.c_str();
}