Changeset 10680
- Timestamp:
- 05/12/11 19:06:11 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/MAINPAGE
r10638 r10680 58 58 which would install the package and the libraries in your system, 59 59 although at the moment this is not recommended 60 61 @subsection rootwarning ROOT warnings during compilation 62 63 During compilation of the GUI you get some warning from root's TQtWidget.h. 64 These warnings are completely harmless and can be ignored. However, it is sometimes 65 advicable to get rid of them to get a clean compiler run which makes development 66 easier. 67 68 Therefore replace 69 \verbatim 70 inline void resize(const QSize &size) { QPixmap newSize(size); *(QPixmap *)this = newSize; } 71 \endverbatim 72 by 73 \verbatim 74 inline void resize(const QSize &sz) { QPixmap newSize(sz); *(QPixmap *)this = newSize; } 75 \endverbatim 76 in TQtWidget.h 77 60 78 61 79 @subsection packages Required packages
Note:
See TracChangeset
for help on using the changeset viewer.