../src/slic3r/Utils/WxFontUtils.cpp:175:27: error: no member named 'IsFree' in 'wxFont'
        "IsFree(" << font.IsFree() << "), " <<
                     ~~~~ ^
1 error generated.
This commit is contained in:
Filip Sykala - NTB T15p 2023-03-02 07:49:28 +01:00
parent 4c3ac0d977
commit e428dcc57e

View file

@ -172,7 +172,7 @@ std::string WxFontUtils::store_wxFont(const wxFont &font)
BOOST_LOG_TRIVIAL(trace) << "'" << font_descriptor << "' wx string get from GetNativeFontInfoDesc. wxFont " <<
"IsOk(" << font.IsOk() << "), " <<
"isNull(" << font.IsNull() << ")" <<
"IsFree(" << font.IsFree() << "), " <<
// "IsFree(" << font.IsFree() << "), " << // on MacOs is no function is free
"IsFixedWidth(" << font.IsFixedWidth() << "), " <<
"IsUsingSizeInPixels(" << font.IsUsingSizeInPixels() << "), " <<
"Encoding(" << (int)font.GetEncoding() << "), " ;