Commit df262b34 authored by Andrey Kamaev's avatar Andrey Kamaev

Fixed #2125

parent eaddfb32
...@@ -3352,7 +3352,9 @@ void GlFuncTab_QT::unmapBuffer(unsigned int target) const ...@@ -3352,7 +3352,9 @@ void GlFuncTab_QT::unmapBuffer(unsigned int target) const
void GlFuncTab_QT::generateBitmapFont(const std::string& family, int height, int weight, bool italic, bool /*underline*/, int start, int count, int base) const void GlFuncTab_QT::generateBitmapFont(const std::string& family, int height, int weight, bool italic, bool /*underline*/, int start, int count, int base) const
{ {
//CV_FUNCNAME( "GlFuncTab_QT::generateBitmapFont" ); #ifdef Q_WS_WIN
CV_FUNCNAME( "GlFuncTab_QT::generateBitmapFont" );
#endif
QFont font(QString(family.c_str()), height, weight, italic); QFont font(QString(family.c_str()), height, weight, italic);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment