summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qurl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qurl.h')
-rw-r--r--src/corelib/io/qurl.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/corelib/io/qurl.h b/src/corelib/io/qurl.h
index 068fe73401..4eaf652ff5 100644
--- a/src/corelib/io/qurl.h
+++ b/src/corelib/io/qurl.h
@@ -140,12 +140,11 @@ public:
enum ComponentFormattingOption {
FullyEncoded = 0x000000,
DecodeSpaces = 0x100000,
- DecodeUnambiguousDelimiters = 0x200000,
- DecodeAllDelimiters = DecodeUnambiguousDelimiters | 0x400000,
+ DecodeDelimiters = 0x200000 | 0x400000,
DecodeUnicode = 0x800000,
- PrettyDecoded = DecodeSpaces | DecodeUnambiguousDelimiters | DecodeUnicode,
- MostDecoded = PrettyDecoded | DecodeAllDelimiters
+ PrettyDecoded = DecodeSpaces | DecodeDelimiters | DecodeUnicode,
+ MostDecoded = PrettyDecoded
};
Q_DECLARE_FLAGS(ComponentFormattingOptions, ComponentFormattingOption)
#ifdef qdoc