diff options
Diffstat (limited to 'src/dxflinextrude.cc')
-rw-r--r-- | src/dxflinextrude.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dxflinextrude.cc b/src/dxflinextrude.cc index 40ddbb7..bb4a7dd 100644 --- a/src/dxflinextrude.cc +++ b/src/dxflinextrude.cc @@ -150,11 +150,10 @@ std::string DxfLinearExtrudeNode::toString() const std::stringstream stream; QString text; - QFileInfo fileInfo(this->filename); stream << this->name() << "(" "file = \"" << this->filename << "\", " - "cache = \"" << std::hex << (int)fileInfo.lastModified().toTime_t() << "." << (int)fileInfo.size() << "\", " + "cache = \"" << QFileInfo(this->filename) << "\", " "layer = \"" << this->layername << "\", " "height = " << std::dec << this->height << ", " "origin = [ " << this->origin_x << " " << this->origin_y << " ], " |