From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kwallet/tests/kwalletasync.cpp | 59 ------------------------------------------ 1 file changed, 59 deletions(-) delete mode 100644 kwallet/tests/kwalletasync.cpp (limited to 'kwallet/tests/kwalletasync.cpp') diff --git a/kwallet/tests/kwalletasync.cpp b/kwallet/tests/kwalletasync.cpp deleted file mode 100644 index e4371448c..000000000 --- a/kwallet/tests/kwalletasync.cpp +++ /dev/null @@ -1,59 +0,0 @@ -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "kwallettest.h" - -static TQTextStream _out( stdout, IO_WriteOnly ); - -void openWallet() -{ - _out << "About to ask for wallet async" << endl; - - // we have no wallet: ask for one. - KWallet::Wallet *wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Asynchronous ); - - WalletReceiver r; - r.connect( wallet, TQT_SIGNAL( walletOpened(bool) ), TQT_SLOT( walletOpened(bool) ) ); - - _out << "About to start 30 second event loop" << endl; - - TQTimer::singleShot( 30000, tqApp, TQT_SLOT( quit() ) ); - int ret = tqApp->exec(); - - if ( ret == 0 ) - _out << "Timed out!" << endl; - else - _out << "Success!" << endl; -} - -void WalletReceiver::walletOpened( bool got ) -{ - _out << "Got async wallet: " << got << endl; - tqApp->exit( 1 ); -} - -int main( int argc, char *argv[] ) -{ - TDEAboutData aboutData( "kwalletasync", "kwalletasync", "version" ); - TDECmdLineArgs::init( argc, argv, &aboutData ); - TDEApplication app( "kwalletasync" ); - - // register with DCOP - _out << "DCOP registration returned " << app.dcopClient()->registerAs(app.name()) << endl; - - openWallet(); - - return 0; -} - -// vim: set noet ts=4 sts=4 sw=4: - -- cgit v1.2.3