]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
Have wxComboCtrl honour any custom foreground and background colour.
[wxWidgets.git] / src / common / config.cpp
index c3a5e8b8cea252d3343e7c33907a8c6d9e734ac9..488aa3b118423480617b10992f0f7e5edebd85ef 100644 (file)
@@ -393,7 +393,7 @@ wxString wxExpandEnvVars(const wxString& str)
 
           while ( m < str.length() && (wxIsalnum(str[m]) || str[m] == wxT('_')) )
             m++;
+
           wxString strVarName(str.c_str() + n + 1, m - n - 1);
 
 #ifdef __WXWINCE__