X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4e878f44abee3e03cf981772e9c623f0c16408c9..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/volume.h diff --git a/interface/wx/volume.h b/interface/wx/volume.h index 13e140eaf9..86394632c2 100644 --- a/interface/wx/volume.h +++ b/interface/wx/volume.h @@ -2,8 +2,7 @@ // Name: volume.h // Purpose: interface of wxFSVolume // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -70,13 +69,13 @@ public: /** Default ctor. Use Create() later. */ - wxFSVolumeBase(); + wxFSVolume(); /** Create the volume object with the given @a name (which should be one of those returned by GetVolumes()). */ - wxFSVolumeBase(const wxString& name); + wxFSVolume(const wxString& name); /** Create the volume object with the given @a name (which should be one of @@ -90,6 +89,7 @@ public: Only the volumes with @e flags such that the expression @code (flags & flagsSet) == flagsSet && !(flags & flagsUnset) @endcode is @true, are returned. By default, all mounted ones are returned. + See ::wxFSVolumeFlags enumeration values for a list of valid flags. This operation may take a while and, even if this function is synchronous, it can be stopped using CancelSearch(). @@ -114,7 +114,7 @@ public: wxFSVolumeKind GetKind() const; /** - Returns the flags of this volume. See wxFSVolumeFlags. + Returns the flags of this volume. See ::wxFSVolumeFlags enumeration values. */ int GetFlags() const;