diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-06-16 23:23:47 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-06-16 23:23:47 +0100 | 
| commit | 06814bd7807aff897abe6a2966c4a8b431816188 (patch) | |
| tree | 827414587d113b0308516f993e74f4d4dc2350b9 | |
| parent | Clang format and tidy (diff) | |
| download | icespider-06814bd7807aff897abe6a2966c4a8b431816188.tar.bz2 icespider-06814bd7807aff897abe6a2966c4a8b431816188.tar.xz icespider-06814bd7807aff897abe6a2966c4a8b431816188.zip | |
Slicer 1.10 compat fix
| -rw-r--r-- | icespider/core/xwwwFormUrlEncoded.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/icespider/core/xwwwFormUrlEncoded.cpp b/icespider/core/xwwwFormUrlEncoded.cpp index 6137d97..8e36425 100644 --- a/icespider/core/xwwwFormUrlEncoded.cpp +++ b/icespider/core/xwwwFormUrlEncoded.cpp @@ -50,13 +50,13 @@ namespace IceSpider {  		mp->Create();  		mp->OnEachChild([this](auto, auto mp, auto) {  			switch (mp->GetType()) { -				case Slicer::mpt_Simple: +				case Slicer::ModelPartType::Simple:  					this->DeserializeSimple(mp);  					break; -				case Slicer::mpt_Complex: +				case Slicer::ModelPartType::Complex:  					this->DeserializeComplex(mp);  					break; -				case Slicer::mpt_Dictionary: +				case Slicer::ModelPartType::Dictionary:  					this->DeserializeDictionary(mp);  					break;  				default: | 
