diff --git a/drape_head/drape_head.pro b/drape_head/drape_head.pro index c20b223f7f..0d3ac92df8 100644 --- a/drape_head/drape_head.pro +++ b/drape_head/drape_head.pro @@ -8,7 +8,7 @@ TARGET = DrapeHead TEMPLATE = app CONFIG += warn_on QT *= core gui widgets -#DEFINES += USE_TESTING_ENGINE +DEFINES += USE_TESTING_ENGINE win32* { LIBS += -lopengl32 -lws2_32 -lshell32 -liphlpapi diff --git a/font_generator/engine.cpp b/font_generator/engine.cpp index 045f1eca42..2be26147cf 100644 --- a/font_generator/engine.cpp +++ b/font_generator/engine.cpp @@ -305,7 +305,7 @@ namespace static void processGlyph(unsigned char * glyphImage, int32_t width, int32_t height, vector & image, int32_t & newW, int32_t & newH) { - static uint32_t border = 4; + uint32_t const border = 4; int32_t const sWidth = width + 2 * border; int32_t const sHeight = height + 2 * border; @@ -402,11 +402,12 @@ void Engine::RunExport() if (!m_workThread->isFinished()) m_workThread->wait(); - QString inPathName(m_dirName.trimmed() + "/font_temp.png"); + QString dirName(m_dirName.trimmed()); + QString inPathName(dirName + "/font_temp.png"); m_tempPngFile = inPathName; - QString outPathName(m_dirName.trimmed() + "/font.png"); + QString outPathName(dirName + "/font.png"); - GetImage().save(m_dirName.trimmed() + "/font_temp.png", "png"); + GetImage().save(dirName + "/font_temp.png", "png"); QString params = QString("/opt/local/bin/convert %1 %2 %3") .arg(inPathName)