From eeacdf4ee9c8a48ed254449f838dd355de3d4ea3 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 1 Aug 2012 21:09:18 +0000 Subject: [PATCH] 2012-08:01 14:08 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/qtgui/hbqtgui.ch ! Fix to prev. --- harbour/ChangeLog | 4 ++++ harbour/contrib/hbqt/qtgui/hbqtgui.ch | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1fce8db3a8..0a796932fe 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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. diff --git a/harbour/contrib/hbqt/qtgui/hbqtgui.ch b/harbour/contrib/hbqt/qtgui/hbqtgui.ch index 25277b7c18..d8541a8deb 100644 --- a/harbour/contrib/hbqt/qtgui/hbqtgui.ch +++ b/harbour/contrib/hbqt/qtgui/hbqtgui.ch @@ -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.