Lines 24-33
Link Here
|
24 |
|
24 |
|
25 |
#ifdef OS_MACOSX |
25 |
#ifdef OS_MACOSX |
26 |
#include <QtGui/QMacStyle> |
26 |
#include <QtGui/QMacStyle> |
27 |
class SystemStyle : public QMacStyle { }; |
27 |
typedef QMacStyle BaseStyle; |
28 |
#else |
28 |
#else |
29 |
#include <QtGui/QStyle> |
29 |
#include <QtGui/QCommonStyle> |
30 |
class SystemStyle : public QStyle { }; |
30 |
typedef QCommonStyle BaseStyle; |
31 |
#endif |
31 |
#endif |
32 |
|
32 |
|
33 |
/** |
33 |
/** |
Lines 39-45
Link Here
|
39 |
* |
39 |
* |
40 |
* @author Tanguy Krotoff |
40 |
* @author Tanguy Krotoff |
41 |
*/ |
41 |
*/ |
42 |
class QtWengoStyle : public SystemStyle { |
42 |
class QtWengoStyle : public BaseStyle { |
43 |
public: |
43 |
public: |
44 |
|
44 |
|
45 |
QtWengoStyle(); |
45 |
QtWengoStyle(); |