Document Mac-only wxFileName methods as being Mac-only.

Use @onlyfor for them for consistency and to help the automated code
generators.

Closes #13971.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-15 00:35:36 +00:00
parent 0b64c2ad63
commit ccca2121ef

View File

@@ -878,6 +878,8 @@ public:
/** /**
On Mac OS, gets the common type and creator for the given extension. On Mac OS, gets the common type and creator for the given extension.
@onlyfor{wxosx}
*/ */
static bool MacFindDefaultTypeAndCreator(const wxString& ext, static bool MacFindDefaultTypeAndCreator(const wxString& ext,
wxUint32* type, wxUint32* type,
@@ -886,6 +888,8 @@ public:
/** /**
On Mac OS, registers application defined extensions and their default type On Mac OS, registers application defined extensions and their default type
and creator. and creator.
@onlyfor{wxosx}
*/ */
static void MacRegisterDefaultTypeAndCreator(const wxString& ext, static void MacRegisterDefaultTypeAndCreator(const wxString& ext,
wxUint32 type, wxUint32 type,
@@ -894,6 +898,8 @@ public:
/** /**
On Mac OS, looks up the appropriate type and creator from the registration On Mac OS, looks up the appropriate type and creator from the registration
and then sets it. and then sets it.
@onlyfor{wxosx}
*/ */
bool MacSetDefaultTypeAndCreator(); bool MacSetDefaultTypeAndCreator();