You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include <tqtextstream.h>
|
|
|
|
#include <tqtimer.h>
|
|
|
|
|
|
|
|
#include <kaboutdata.h>
|
|
|
|
#include <kapplication.h>
|
|
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kglobal.h>
|
|
|
|
#include <kstandarddirs.h>
|
|
|
|
#include <dcopclient.h>
|
|
|
|
#include <kwallet.h>
|
|
|
|
|
|
|
|
static TQTextStream _out( stdout, IO_WriteOnly );
|
|
|
|
|
|
|
|
void openWallet()
|
|
|
|
{
|
|
|
|
_out << "About to ask for wallet sync" << endl;
|
|
|
|
|
|
|
|
KWallet::Wallet *w = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Synchronous );
|
|
|
|
|
|
|
|
_out << "Got sync wallet: " << (w != 0) << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
KAboutData aboutData( "kwalletsync", "kwalletsync", "version" );
|
|
|
|
KCmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
KApplication app( "kwalletsync" );
|
|
|
|
|
|
|
|
// 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:
|
|
|
|
|