diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-03 04:10:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-03 04:10:36 (GMT) |
commit | 6f632190a05417d44193e3b16a7b3000b2cc1145 (patch) | |
tree | 9ddccef57c10361a7019274f79f1d86edb7630d3 /src/dxflinextrudenode.h | |
parent | 3129189342f3da7322efa0b860ff3ff676ba7b77 (diff) |
Ported a bunch of stuff from Qt to STL
Diffstat (limited to 'src/dxflinextrudenode.h')
-rw-r--r-- | src/dxflinextrudenode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dxflinextrudenode.h b/src/dxflinextrudenode.h index 70e7a06..3c3beca 100644 --- a/src/dxflinextrudenode.h +++ b/src/dxflinextrudenode.h @@ -3,7 +3,6 @@ #include "node.h" #include "visitor.h" -#include <QString> class DxfLinearExtrudeNode : public AbstractPolyNode { @@ -24,7 +23,7 @@ public: double fn, fs, fa, height, twist; double origin_x, origin_y, scale; bool center, has_twist; - QString filename, layername; + std::string filename, layername; virtual PolySet *evaluate_polyset(render_mode_e mode, class PolySetEvaluator *) const; }; |