2012-08:01 14:08 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbqt/qtgui/hbqtgui.ch
    ! Fix to prev.
This commit is contained in:
Pritpal Bedi
2012-08-01 21:09:18 +00:00
parent ab8702879b
commit eeacdf4ee9
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-08:01 14:08 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqtgui.ch
! Fix to prev.
2012-08:01 14:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqtgui.ch
+ Added: QDir_* constants.

View File

@@ -2424,7 +2424,7 @@
#define QDir_NoDotAndDotDot 0x1000 // Do not list the special entries "." and "..".
#define QDir_NoDot 0x2000 // Do not list the special entry ".".
#define QDir_NoDotDot 0x4000 // Do not list the special entry "..".
#define QDir_AllEntries hb_bitOr( Qt_Dirs, Qt_Files, Qt_Drives ) // List directories, files, drives and symlinks (this does not list broken symlinks unless you specify System).
#define QDir_AllEntries hb_bitOr( QDir_Dirs, QDir_Files, QDir_Drives ) // List directories, files, drives and symlinks (this does not list broken symlinks unless you specify System).
#define QDir_Readable 0x010 // List files for which the application has read access. The Readable value needs to be combined with Dirs or Files.
#define QDir_Writable 0x020 // List files for which the application has write access. The Writable value needs to be combined with Dirs or Files.
#define QDir_Executable 0x040 // List files for which the application has execute access. The Executable value needs to be combined with Dirs or Files.