PalmOS description.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31509 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -187,9 +187,19 @@ void wxBell()
|
||||
|
||||
wxString wxGetOsDescription()
|
||||
{
|
||||
wxString str;
|
||||
wxString strOS = _T("PalmOS");
|
||||
|
||||
return str;
|
||||
char *version = SysGetOSVersionString();
|
||||
if(version)
|
||||
{
|
||||
wxString str = wxString::FromAscii(version);
|
||||
if(!str.empty())
|
||||
{
|
||||
strOS << _(" ") << str;
|
||||
}
|
||||
}
|
||||
|
||||
return strOS;
|
||||
}
|
||||
|
||||
wxToolkitInfo& wxAppTraits::GetToolkitInfo()
|
||||
|
Reference in New Issue
Block a user