// Purpose: interface of wxFileName
// Author: wxWidgets team
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
*/
enum wxSizeConvention
{
- /// 1000 bytes = 1KiB.
+ /// 1024 bytes = 1KB.
+ wxSIZE_CONV_TRADITIONAL,
+
+ /// 1024 bytes = 1KiB.
wxSIZE_CONV_IEC,
/// 1000 bytes = 1KB.
- wxSIZE_CONV_SI,
-
- /// 1024 bytes = 1KB.
- wxSIZE_CONV_TRADITIONAL
+ wxSIZE_CONV_SI
};
bool DirExists() const;
/**
- Returns @true if the directory with this name exists.
+ Returns @true if the directory with name @a dir exists.
*/
static bool DirExists(const wxString& dir);
bool FileExists() const;
/**
- Returns @true if the file with this name exists.
+ Returns @true if the file with name @a file exists.
@see DirExists()
*/