]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/metafile.tex
Fixes for WinCE
[wxWidgets.git] / docs / latex / wx / metafile.tex
index 394496c3b4360c65e68d5bf5ccdc8fcf2d82fe22..0b8601c58edc6279299cc1ee7a71557a3e10746e 100644 (file)
@@ -38,14 +38,14 @@ Destructor.
 
 \func{bool}{Ok}{\void}
 
 
 \func{bool}{Ok}{\void}
 
-Returns TRUE if the metafile is valid.
+Returns true if the metafile is valid.
 
 \membersection{wxMetafile::Play}\label{wxmetafileplay}
 
 \func{bool}{Play}{\param{wxDC *}{dc}}
 
 Plays the metafile into the given device context, returning
 
 \membersection{wxMetafile::Play}\label{wxmetafileplay}
 
 \func{bool}{Play}{\param{wxDC *}{dc}}
 
 Plays the metafile into the given device context, returning
-TRUE if successful.
+true if successful.
 
 \membersection{wxMetafile::SetClipboard}
 
 
 \membersection{wxMetafile::SetClipboard}
 
@@ -55,7 +55,7 @@ Passes the metafile data to the clipboard. The metafile can no longer be
 used for anything, but the wxMetafile object must still be destroyed by
 the application.
 
 used for anything, but the wxMetafile object must still be destroyed by
 the application.
 
-Below is a example of metafle, metafile device context and clipboard use
+Below is a example of metafile, metafile device context and clipboard use
 from the {\tt hello.cpp} example. Note the way the metafile dimensions
 are passed to the clipboard, making use of the device context's ability
 to keep track of the maximum extent of drawing commands.
 from the {\tt hello.cpp} example. Note the way the metafile dimensions
 are passed to the clipboard, making use of the device context's ability
 to keep track of the maximum extent of drawing commands.
@@ -64,7 +64,7 @@ to keep track of the maximum extent of drawing commands.
   wxMetafileDC dc;
   if (dc.Ok())
   {
   wxMetafileDC dc;
   if (dc.Ok())
   {
-    Draw(dc, FALSE);
+    Draw(dc, false);
     wxMetafile *mf = dc.Close();
     if (mf)
     {
     wxMetafile *mf = dc.Close();
     if (mf)
     {