]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/metafile.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / metafile.h
index cb446bfacee462359bc46fa9c0d16f54b0851f21..57ca35ab802d6594073494aae6f4e37b101f8a1c 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        metafile.h
 // Purpose:     interface of wxMetafileDC
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -39,7 +38,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 +68,7 @@ public:
     @onlyfor{wxmsw}
 
     @library{wxcore}
-    @category{gdi,misc}
+    @category{gdi}
 
     @see wxMetafileDC
 */
@@ -82,7 +81,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 +93,7 @@ public:
     /**
         Returns @true if the metafile is valid.
     */
-    bool Ok();
+    bool IsOk();
 
     /**
         Plays the metafile into the given device context, returning
@@ -114,7 +113,7 @@ public:
 
         @code
         wxMetafileDC dc;
-        if (dc.Ok())
+        if (dc.IsOk())
         {
             Draw(dc, false);
             wxMetafile *mf = dc.Close();
@@ -135,7 +134,7 @@ public:
 // Global functions/macros
 // ============================================================================
 
-/** @ingroup group_funcmacro_gdi */
+/** @addtogroup group_funcmacro_gdi */
 //@{
 
 /**