summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/main.cpp
authortille <tille>2002-07-06 13:53:48 (UTC)
committer tille <tille>2002-07-06 13:53:48 (UTC)
commitac76e913d1930cdf7903fed344bd7bcc1b7545c0 (patch) (unidiff)
tree8c71a16a7bc80eccbe1affbc976b795be6807b62 /noncore/settings/netsystemtime/main.cpp
parent02b8c37db8d3fd197c8c730451bd7819e65817a1 (diff)
downloadopie-ac76e913d1930cdf7903fed344bd7bcc1b7545c0.zip
opie-ac76e913d1930cdf7903fed344bd7bcc1b7545c0.tar.gz
opie-ac76e913d1930cdf7903fed344bd7bcc1b7545c0.tar.bz2
clockapplet uses qcop call to open settime dialog
Diffstat (limited to 'noncore/settings/netsystemtime/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/main.cpp b/noncore/settings/netsystemtime/main.cpp
index 5b01408..c6d5f9a 100644
--- a/noncore/settings/netsystemtime/main.cpp
+++ b/noncore/settings/netsystemtime/main.cpp
@@ -1,14 +1,16 @@
1//#include "settime.h" 1#include <stdio.h>
2#include "ntp.h" 2#include "ntp.h"
3#include <qpe/qpeapplication.h> 3#include <qpe/qpeapplication.h>
4 4
5int main( int argc, char ** argv ) 5int main( int argc, char ** argv )
6{ 6{
7 printf("This is netsystemtime\n");
8 printf("$Id$\n");
9
7 QPEApplication a( argc, argv ); 10 QPEApplication a( argc, argv );
8 11
9 // SetDateTime mw;
10 Ntp mw; 12 Ntp mw;
11 a.showMainWidget( &mw ); 13 a.showMainWidget( &mw );
12 14
13 return a.exec(); 15 return a.exec();
14} 16}