From c22be731680c8766894419f9c91a659459baadeb Mon Sep 17 00:00:00 2001 From: "Jonas M. Gastal" Date: Mon, 30 Jan 2012 11:09:13 -0200 Subject: QDir::NoDotAndDotDot is now QDir::NoDot|QDir::NoDotDot. Change-Id: I8ef7782258c2ec02ad2ec2a5d5cab90f53c62aa3 Reviewed-by: David Faure Reviewed-by: Lars Knoll --- src/corelib/io/qdir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib/io/qdir.h') diff --git a/src/corelib/io/qdir.h b/src/corelib/io/qdir.h index bc7837a7c1..5551ecd2fb 100644 --- a/src/corelib/io/qdir.h +++ b/src/corelib/io/qdir.h @@ -77,9 +77,9 @@ public: AllDirs = 0x400, CaseSensitive = 0x800, - NoDotAndDotDot = 0x1000, // ### Qt5 NoDotAndDotDot = NoDot|NoDotDot NoDot = 0x2000, NoDotDot = 0x4000, + NoDotAndDotDot = NoDot | NoDotDot, NoFilter = -1 }; -- cgit v1.2.3