summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qurl_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qurl_p.h')
-rw-r--r--src/corelib/io/qurl_p.h22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/corelib/io/qurl_p.h b/src/corelib/io/qurl_p.h
index d9207bd809..fb54d74260 100644
--- a/src/corelib/io/qurl_p.h
+++ b/src/corelib/io/qurl_p.h
@@ -75,27 +75,37 @@ public:
};
enum ErrorCode {
- InvalidSchemeError = 0x000,
+ // the high byte of the error code matches the Section
+ InvalidSchemeError = Scheme << 8,
SchemeEmptyError,
- InvalidRegNameError = 0x800,
+ InvalidUserNameError = UserName << 8,
+
+ InvalidPasswordError = Password << 8,
+
+ InvalidRegNameError = Host << 8,
InvalidIPv4AddressError,
InvalidIPv6AddressError,
InvalidIPvFutureError,
HostMissingEndBracket,
- InvalidPortError = 0x1000,
+ InvalidPortError = Port << 8,
PortEmptyError,
- PathContainsColonBeforeSlash = 0x2000,
+ InvalidPathError = Path << 8,
+ PathContainsColonBeforeSlash,
+
+ InvalidQueryError = Query << 8,
+
+ InvalidFragmentError = Fragment << 8,
- NoError = 0xffff
+ NoError = 0
};
QUrlPrivate();
QUrlPrivate(const QUrlPrivate &copy);
- void parse(const QString &url);
+ void parse(const QString &url, QUrl::ParsingMode parsingMode);
void clear();
// no QString scheme() const;