X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ba1d7a6cec8d9569ce2e380d4a39ddcd4450c9b5..6cf5edea273b08316390683a17851a2437103da4:/interface/wx/metafile.h diff --git a/interface/wx/metafile.h b/interface/wx/metafile.h index cb446bface..cf541c567e 100644 --- a/interface/wx/metafile.h +++ b/interface/wx/metafile.h @@ -39,7 +39,7 @@ public: Constructor. If no filename is passed, the metafile is created in memory. */ - wxMetafileDC(const wxString& filename = ""); + wxMetafileDC(const wxString& filename = wxEmptyString); /** Destructor. @@ -69,7 +69,7 @@ public: @onlyfor{wxmsw} @library{wxcore} - @category{gdi,misc} + @category{gdi} @see wxMetafileDC */ @@ -82,7 +82,7 @@ public: If a filename is given, the Windows disk metafile is read in. Check whether this was performed successfully by using the IsOk() member. */ - wxMetafile(const wxString& filename = ""); + wxMetafile(const wxString& filename = wxEmptyString); /** Destructor. @@ -94,7 +94,7 @@ public: /** Returns @true if the metafile is valid. */ - bool Ok(); + bool IsOk(); /** Plays the metafile into the given device context, returning @@ -114,7 +114,7 @@ public: @code wxMetafileDC dc; - if (dc.Ok()) + if (dc.IsOk()) { Draw(dc, false); wxMetafile *mf = dc.Close(); @@ -135,7 +135,7 @@ public: // Global functions/macros // ============================================================================ -/** @ingroup group_funcmacro_gdi */ +/** @addtogroup group_funcmacro_gdi */ //@{ /**