From c438e941c4de1d27f0bf7afe4ca7f1742af97088 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 8 Oct 2007 11:35:32 +0000 Subject: [PATCH] use wxFD_XXX constants instead of wxXXX in the docs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49090 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/filedlg.tex | 4 ++-- docs/latex/wx/function.tex | 4 ++-- docs/latex/wx/image.tex | 2 +- docs/latex/wx/tcommdlg.tex | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/latex/wx/filedlg.tex b/docs/latex/wx/filedlg.tex index 42be6bd0df..81ec8312df 100644 --- a/docs/latex/wx/filedlg.tex +++ b/docs/latex/wx/filedlg.tex @@ -122,7 +122,7 @@ Returns the default filename. \constfunc{void}{GetFilenames}{\param{wxArrayString\& }{filenames}} Fills the array {\it filenames} with the names of the files chosen. This -function should only be used with the dialogs which have {\tt wxMULTIPLE} style, +function should only be used with the dialogs which have {\tt wxFD\_MULTIPLE} style, use \helpref{GetFilename}{wxfiledialoggetfilename} for the others. Note that under Windows, if the user selects shortcuts, the filenames @@ -155,7 +155,7 @@ Returns the full path (directory and filename) of the selected file. \constfunc{void}{GetPaths}{\param{wxArrayString\& }{paths}} Fills the array {\it paths} with the full paths of the files chosen. This -function should only be used with the dialogs which have {\tt wxMULTIPLE} style, +function should only be used with the dialogs which have {\tt wxFD\_MULTIPLE} style, use \helpref{GetPath}{wxfiledialoggetpath} for the others. \membersection{wxFileDialog::GetWildcard}\label{wxfiledialoggetwildcard} diff --git a/docs/latex/wx/function.tex b/docs/latex/wx/function.tex index 6f4054c80d..893de5132f 100644 --- a/docs/latex/wx/function.tex +++ b/docs/latex/wx/function.tex @@ -1968,8 +1968,8 @@ The path and filename are distinct elements of a full file pathname. If path is empty, the current directory will be used. If filename is empty, no default filename will be supplied. The wildcard determines what files are displayed in the file selector, and file extension supplies a type -extension for the required filename. Flags may be a combination of wxOPEN, -wxSAVE, wxOVERWRITE\_PROMPT or wxFILE\_MUST\_EXIST. Note that wxMULTIPLE +extension for the required filename. Flags may be a combination of wxFD\_OPEN, +wxFD\_SAVE, wxFD\_OVERWRITE\_PROMPT or wxFD\_FILE\_MUST\_EXIST. Note that wxFD\_MULTIPLE can only be used with \helpref{wxFileDialog}{wxfiledialog} and not here as this function only returns a single file name. diff --git a/docs/latex/wx/image.tex b/docs/latex/wx/image.tex index a15f1a6f7b..7113961532 100644 --- a/docs/latex/wx/image.tex +++ b/docs/latex/wx/image.tex @@ -474,7 +474,7 @@ It is usually a good idea to prepend a description before passing the result to Example: \begin{verbatim} - wxFileDialog FileDlg( this, "Choose Image", ::wxGetCwd(), "", _("Image Files ") + wxImage::GetImageExtWildcard(), wxOPEN ); + wxFileDialog FileDlg( this, "Choose Image", ::wxGetCwd(), "", _("Image Files ") + wxImage::GetImageExtWildcard(), wxFD_OPEN ); \end{verbatim} \wxheading{See also} diff --git a/docs/latex/wx/tcommdlg.tex b/docs/latex/wx/tcommdlg.tex index 0e83a9f4b6..b5916df444 100644 --- a/docs/latex/wx/tcommdlg.tex +++ b/docs/latex/wx/tcommdlg.tex @@ -148,9 +148,9 @@ functionality. The path and filename are distinct elements of a full file pathna If path is ``", the current directory will be used. If filename is ``", no default filename will be supplied. The wildcard determines what files are displayed in the file selector, and file extension supplies a type -extension for the required filename. Flags may be a combination of wxOPEN, -wxSAVE, wxOVERWRITE\_PROMPT, wxHIDE\_READONLY, wxFILE\_MUST\_EXIST, -wxMULTIPLE, wxCHANGE\_DIR or 0. +extension for the required filename. Flags may be a combination of wxFD\_OPEN, +wxFD\_SAVE, wxFD\_OVERWRITE\_PROMPT, wxFD\_FILE\_MUST\_EXIST, +wxFD\_MULTIPLE, wxFD\_CHANGE\_DIR or 0. Both the X and Windows versions implement a wildcard filter. Typing a filename containing wildcards (*, ?) in the filename text item, and