Package: felix-latin Version: 2.0-1 Tags: patch Usertags: origin-ubuntu natty ubuntu-patch
In Ubuntu, we've applied the attached patch to achieve the following: - debian/patches/50-fix-ftbfs-with-gcc4.5.patch: + Remove redundant declaration of QScrollArea in gafio.cpp to fix FTBFS with GCC 4.5. We thought you might be interested in doing the same.
Description: Remove redundant QScrollArea to fix FTBFS with GCC 4.5 Author: Bhavani Shankar <bh...@ubuntu.com> --- felix-latin-1.0.orig/gafio.cpp +++ felix-latin-1.0/gafio.cpp @@ -180,7 +180,7 @@ void zScrollArea::wheelEvent (QWheelEven } zScrollArea::zScrollArea(Gxxxiv * mainWindow){ - QScrollArea::QScrollArea(); + QScrollArea(); this->mainWindow=mainWindow; }