Update CMakeLists.txt - play with openssl
[novacoin.git] / src / qt / dialogwindowflags.h
1 #ifndef DIALOGWINDOWFLAGS_H
2 #define DIALOGWINDOWFLAGS_H
3 // Dialog Window Flags
4 #if QT_VERSION < 0x050000
5  static const Qt::WindowFlags DIALOGWINDOWHINTS = Qt::WindowSystemMenuHint | Qt::WindowTitleHint;
6 #else
7  static const Qt::WindowFlags DIALOGWINDOWHINTS = Qt::WindowCloseButtonHint | Qt::WindowTitleHint;
8 #endif
9 #endif