Pencil2D  ff90c0872e88be3bf81c548cd60f01983012ec49
Pencil2D is an animation software for both bitmap and vector graphics. It is free, multi-platform, and open source.
 All Classes Functions
app_util.h
1 #ifndef APP_UTIL_H
2 #define APP_UTIL_H
3 
4 inline
5 void hideQuestionMark( QDialog& dlg )
6 {
7  Qt::WindowFlags eFlags = Qt::Dialog | Qt::WindowTitleHint;
8  dlg.setWindowFlags( eFlags );
9 }
10 
11 #endif // APP_UTIL_H