Changeset 650 for trunk/plugins/input/postgis/postgisfs.cpp
- Timestamp:
- 02/18/08 16:40:34 (3 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/input/postgis/postgisfs.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/input/postgis/postgisfs.cpp
r617 r650 133 133 else if (oid==25 || oid==1042 || oid==1043) // text or bpchar or varchar 134 134 { 135 std::string str(buf); 136 trim(str); 137 std::wstring wstr = tr_->transcode(str); 138 boost::put(*feature,name,wstr); 135 //std::string str(buf); 136 //trim(str); 137 //std::wstring wstr = tr_->transcode(str); 138 UnicodeString ustr = tr_->transcode(buf); 139 boost::put(*feature,name,ustr); 139 140 } 140 141 else if (oid == 1700) // numeric
