X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aa0af8ce541966c0d6f0eea75d29d2bdd054b652..a4ea083bbdf710d3234dcbd2eafb5d0e078f8348:/src/common/sysopt.cpp diff --git a/src/common/sysopt.cpp b/src/common/sysopt.cpp index 2f611918dd..ede2e7a547 100644 --- a/src/common/sysopt.cpp +++ b/src/common/sysopt.cpp @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: 2001-07-10 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -76,7 +75,7 @@ wxString wxSystemOptions::GetOption(const wxString& name) { val = gs_optionValues[idx]; } - else // not set explicitely + else // not set explicitly { // look in the environment: first for a variable named "wx_appname_name" // which can be set to affect the behaviour or just this application @@ -101,12 +100,7 @@ wxString wxSystemOptions::GetOption(const wxString& name) int wxSystemOptions::GetOptionInt(const wxString& name) { -#ifdef _PACC_VER - // work around the PalmOS pacc compiler bug - return wxAtoi (GetOption(name).data()); -#else return wxAtoi (GetOption(name)); -#endif } bool wxSystemOptions::HasOption(const wxString& name)