Changeset 10680


Ignore:
Timestamp:
05/12/11 19:06:11 (14 years ago)
Author:
tbretz
Message:
Added some hint about the TQtWidget warning from root.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/MAINPAGE

    r10638 r10680  
    5858which would install the package and the libraries in your system,
    5959although at the moment this is not recommended
     60
     61@subsection rootwarning ROOT warnings during compilation
     62
     63During compilation of the GUI you get some warning from root's TQtWidget.h.
     64These warnings are completely harmless and can be ignored. However, it is sometimes
     65advicable to get rid of them to get a clean compiler run which makes development
     66easier.
     67
     68Therefore replace
     69\verbatim
     70inline void resize(const QSize &size) { QPixmap newSize(size); *(QPixmap *)this = newSize; }
     71\endverbatim
     72by
     73\verbatim
     74inline void resize(const QSize &sz) { QPixmap newSize(sz); *(QPixmap *)this = newSize; }
     75\endverbatim
     76in TQtWidget.h
     77
    6078
    6179@subsection packages Required packages
Note: See TracChangeset for help on using the changeset viewer.