blob: cb05d1559a1f727cb0c374a16981015c4d1d080c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __QT_OVERRIDE_H__
#define __QT_OVERRIDE_H__
#if QT_VERSION > 233
namespace Opie {
enum ForceAppearance {
Force_Style = 0x01,
Force_Font = 0x02,
Force_Decoration = 0x04,
Force_All = 0xff,
Force_None = 0x00,
};
extern const char *binaryName ( );
extern int force_appearance;
}
#endif // (QT_VERSION >233)
#endif
|