]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/http.cpp
Draw wxPropertyGrid drop down items with consistent (non-bold) font (fixes #12088)
[wxWidgets.git] / src / common / http.cpp
index 66257f4dd5777e2326568e0eaf4637fe08bae427..c4a6c05dce6bb59eb03d4f738f0d9a330a628bb0 100644 (file)
@@ -159,6 +159,8 @@ wxString wxHTTP::GetCookie(const wxString& cookie) const
 
 wxString wxHTTP::GenerateAuthString(const wxString& user, const wxString& pass) const
 {
+    // TODO: Use wxBase64Encode() now that we have it instead of reproducing it
+
     static const char *base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
 
     wxString buf;