Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-11-01 21:30:05 +0300
committerbubnikv <bubnikv@gmail.com>2017-11-01 21:30:05 +0300
commit95c284c76431fcd3e21764b206ba6100c3179c1e (patch)
treeaa002db924f317ad449d270f8df2b1cd9543a14d /xs/src/libslic3r/Utils.hpp
parent337f6c5808133df1c32ee6b7cb4f3a9047a97d4c (diff)
Next step of Perl to C++ configuration layer conversion.
Diffstat (limited to 'xs/src/libslic3r/Utils.hpp')
-rw-r--r--xs/src/libslic3r/Utils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Utils.hpp b/xs/src/libslic3r/Utils.hpp
index ac6021ff9..9e4043818 100644
--- a/xs/src/libslic3r/Utils.hpp
+++ b/xs/src/libslic3r/Utils.hpp
@@ -34,7 +34,7 @@ extern std::string normalize_utf8_nfc(const char *src);
extern std::string timestamp_str();
// Standard "generated by Slic3r version xxx timestamp xxx" header string,
// to be placed at the top of Slic3r generated files.
-inline std::string header_slic3r_generated() { return std::string("generated by Slic3r " SLIC3R_VERSION " on ") + timestamp_str(); }
+inline std::string header_slic3r_generated() { return std::string("generated by " SLIC3R_FORK_NAME " " SLIC3R_VERSION " " ) + timestamp_str(); }
// Compute the next highest power of 2 of 32-bit v
// http://graphics.stanford.edu/~seander/bithacks.html