diff options
author | Marius Kintel <marius@kintel.net> | 2010-11-07 21:29:34 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-11-07 21:29:34 (GMT) |
commit | e0a068a0e8678da426e1edd398feab5f4ea4d0f0 (patch) | |
tree | 5eaa05991d1652fd10692eb7410143d973db6643 /src/cgaladv.cc | |
parent | d310e364d14444a1a27ae2337cfb4bd0ab061113 (diff) |
Refactored some QString usage in the backend to std::string
Diffstat (limited to 'src/cgaladv.cc')
-rw-r--r-- | src/cgaladv.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgaladv.cc b/src/cgaladv.cc index d71e5b0..0e89ed5 100644 --- a/src/cgaladv.cc +++ b/src/cgaladv.cc @@ -80,7 +80,7 @@ public: } Value path; - QString subdiv_type; + std::string subdiv_type; int convexity, level; cgaladv_type_e type; }; @@ -155,7 +155,7 @@ std::string CgaladvNode::toString() const stream << "(convexity = " << this->convexity << ")"; break; case GLIDE: - stream << "(path = " << this->path.dump() << ", convexity = " << this->convexity << ")"; + stream << "(path = " << this->path << ", convexity = " << this->convexity << ")"; break; case SUBDIV: stream << "(level = " << this->level << ", convexity = " << this->convexity << ")"; |