tag 565096 + upstream patch forwarded 565096 https://bugs.kde.org/show_bug.cgi?id=222542 thanks
Hello Matthias, thank you for doing the rebuild and reporting the bug. I forwarded it upstream and created an patch. Applying the attached patch let me build Skanlite with your GCC/G++ packages in a pbuilder environment on i386. Pleas let me know, if this fixes the bug for you too, if possible. Kind regards, Kai Wasserbäch -- Kai Wasserbäch (Kai Wasserbaech) E-Mail: [email protected] Jabber (debianforum.de): Drizzt URL: http://wiki.debian.org/C%C3%B9ran GnuPG: 0xE1DE59D2 0600 96CE F3C8 E733 E5B6 1587 A309 D76C E1DE 59D2 (http://pgpkeys.pca.dfn.de/pks/lookup?search=0xE1DE59D2&fingerprint=on&hash=on&op=vindex)
Description: Fix FTBFS with the upcoming GCC 4.5 (g++). The upcoming release of gcc/g++ (4.5) is stricter again. This leads to an FTBFS for Skanlite. Calling a constructer directly is a no-go. Author: Kai Wasserbäch <[email protected]> Last-Update: 2010-01-13 Bug-Debian: http://bugs.debian.org/565096 Origin: vendor, http://bugs.debian.org/565096 --- skanlite.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: b/skanlite.cpp =================================================================== --- a/skanlite.cpp +++ b/skanlite.cpp @@ -388,8 +388,8 @@ void Skanlite::setDir(void) //************************************************************ void Skanlite::showAboutDialog(void) { - KAboutApplicationDialog::KAboutApplicationDialog( - KGlobal::mainComponent().aboutData(), 0).exec(); + KAboutApplicationDialog oKAboutDiag(KGlobal::mainComponent().aboutData(), 0); + oKAboutDiag.exec(); }
signature.asc
Description: OpenPGP digital signature

