tags 565018 patch
thanks

Hello,
Attached patch was used to fix this problem in Ubuntu.
Description: fix FTBFS with gcc 4.5.
Author: Ilya Barygin <bary...@gmail.com>
Bug-Debian: http://bugs.debian.org/565018
Bug-Ubuntu: https://launchpad.net/bugs/749264
diff -Nur -x '*.orig' -x '*~' kphone-4.2//kphone/kcallwidget.cpp kphone-4.2.new//kphone/kcallwidget.cpp
--- kphone-4.2//kphone/kcallwidget.cpp	2011-08-20 13:40:59.000000000 +0400
+++ kphone-4.2.new//kphone/kcallwidget.cpp	2011-08-20 13:41:53.000000000 +0400
@@ -92,9 +92,9 @@
 	: call( initcall ), phoneView( parent )
 {
 	if( call->getSubject() == tr("Incoming call") )
-		QDialog::QDialog( NULL, name, FALSE, WStyle_DialogBorder );
+		QDialog( NULL, name, FALSE, WStyle_DialogBorder );
 	else
-		QDialog::QDialog( parent, name, FALSE, WStyle_DialogBorder );
+		QDialog( parent, name, FALSE, WStyle_DialogBorder );
 		
 	sipauthentication = auth;
 	missedCalls.setAutoDelete( true );

Reply via email to