summaryrefslogtreecommitdiff
path: root/noncore/comm/keypebble/main.cpp
authorimm <imm>2002-09-01 14:34:26 (UTC)
committer imm <imm>2002-09-01 14:34:26 (UTC)
commit09c844dbf402d76f58b01397e850bd5c17c0535b (patch) (unidiff)
treec3f518bb7fd9a241f4b139146d0d2c89b2140b71 /noncore/comm/keypebble/main.cpp
parent90d1c76275ab950d96cda2a2f65dab1bbcc50a40 (diff)
downloadopie-09c844dbf402d76f58b01397e850bd5c17c0535b.zip
opie-09c844dbf402d76f58b01397e850bd5c17c0535b.tar.gz
opie-09c844dbf402d76f58b01397e850bd5c17c0535b.tar.bz2
config fix
Diffstat (limited to 'noncore/comm/keypebble/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/comm/keypebble/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/comm/keypebble/main.cpp b/noncore/comm/keypebble/main.cpp
index a32a368..ee3cd79 100644
--- a/noncore/comm/keypebble/main.cpp
+++ b/noncore/comm/keypebble/main.cpp
@@ -6,13 +6,12 @@
6 6
7int main( int argc, char **argv ) 7int main( int argc, char **argv )
8{ 8{
9 QPEApplication app( argc, argv ); 9 QPEApplication app( argc, argv );
10 KVNC *view = new KVNC( "Keypebble" ); 10 KVNC *view = new KVNC( "Keypebble" );
11 app.showMainWidget( view ); 11 app.showMainWidget( view );
12 12
13 if ( argc > 1 ) 13 if ( argc > 1 )
14 view->openURL( QUrl(argv[1]) ); 14 view->openURL( QUrl(argv[1]) );
15 15
16 return app.exec(); 16 return app.exec();
17} 17}
18