From c0f7cf79eb241e98be7deba8678e87abc79d4926 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 20 Mar 2011 03:04:44 +0100 Subject: [PATCH] * Don't include CPack.txt for now. --- src/CMakeLists.txt | 2 +- src/libtomahawk/functimeout.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b3acb3f05..f28149c70 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -236,4 +236,4 @@ ELSEIF( APPLE ) install( TARGETS tomahawk RUNTIME DESTINATION bin ) ENDIF( APPLE ) -INCLUDE( "CPack.txt" ) +#INCLUDE( "CPack.txt" ) diff --git a/src/libtomahawk/functimeout.h b/src/libtomahawk/functimeout.h index 9a6b97d24..c66134311 100644 --- a/src/libtomahawk/functimeout.h +++ b/src/libtomahawk/functimeout.h @@ -47,7 +47,7 @@ public: : m_func( func ) { //qDebug() << Q_FUNC_INFO; - QTimer::singleShot( ms, this, SLOT(exec() ) ); + QTimer::singleShot( ms, this, SLOT( exec() ) ); }; ~FuncTimeout()