summaryrefslogtreecommitdiffstats
path: root/kdm/kfrontend/krootimage.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kdm/kfrontend/krootimage.cpp
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdm/kfrontend/krootimage.cpp')
-rw-r--r--kdm/kfrontend/krootimage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdm/kfrontend/krootimage.cpp b/kdm/kfrontend/krootimage.cpp
index c630d9fa7..67b575c5f 100644
--- a/kdm/kfrontend/krootimage.cpp
+++ b/kdm/kfrontend/krootimage.cpp
@@ -25,7 +25,7 @@ Boston, MA 02110-1301, USA.
#include <ksimpleconfig.h>
#include <klocale.h>
-#include <qfile.h>
+#include <tqfile.h>
#include "krootimage.h"
@@ -46,10 +46,10 @@ static KCmdLineOptions options[] = {
MyApplication::MyApplication( const char *conf )
: KApplication(),
- renderer( 0, new KSimpleConfig( QFile::decodeName( conf ) ) )
+ renderer( 0, new KSimpleConfig( TQFile::decodeName( conf ) ) )
{
- connect( &timer, SIGNAL(timeout()), SLOT(slotTimeout()) );
- connect( &renderer, SIGNAL(imageDone( int )), this, SLOT(renderDone()) );
+ connect( &timer, TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout()) );
+ connect( &renderer, TQT_SIGNAL(imageDone( int )), this, TQT_SLOT(renderDone()) );
renderer.enableTiling( true ); // optimize
renderer.changeWallpaper(); // cannot do it when we're killed, so do it now
timer.start( 60000 );