removed GetString(), it doesn't belong here

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13959 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-02-01 19:30:01 +00:00
parent 38fc0d9db9
commit 9b0f84db4a
2 changed files with 0 additions and 49 deletions

View File

@@ -130,14 +130,6 @@ enum wxSystemFeature
wxSYS_CAN_ICONIZE_FRAME
};
// values for wxSystemSettings::GetString
enum wxSystemString
{
wxSYS_DECIMAL_SEPARATOR = 1,
wxSYS_LIST_SEPARATOR,
wxSYS_LEADING_ZERO
};
// ----------------------------------------------------------------------------
// wxSystemSettingsNative: defines the API for wxSystemSettings class
// ----------------------------------------------------------------------------
@@ -163,12 +155,6 @@ public:
// return true if the port has certain feature
static bool HasFeature(wxSystemFeature index);
// Windows-only for now
#ifdef __WXMSW__
// Get a system string, e. g. decimal separator
static wxString GetString(int index);
#endif
};
// ----------------------------------------------------------------------------