blob: d11917cb0153c648d94ca897dd6e154f4cee197b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __QT_OVERRIDE_H__
#define __QT_OVERRIDE_H__
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
|