summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/main.cc
authorzecke <zecke>2005-02-20 13:06:59 (UTC)
committer zecke <zecke>2005-02-20 13:06:59 (UTC)
commitcc00ea4b5def00b6664bd5d9c5e5d59f5ce62732 (patch) (side-by-side diff)
tree23c51eb79b9d81519b6cd50221b0bbb051415634 /noncore/net/opietooth/blue-pin/main.cc
parentbdbe220d0096667f26c8c25c1e1011c32fc54524 (diff)
downloadopie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.zip
opie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.tar.gz
opie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.tar.bz2
-Use own main method
-Remove default c'tor and use the remaining one as default -QString() -> QString::null (for Qt4 we will do the opposite) -use qApp->quit() and exit to be sure to really exit Still open: do not use the depcreated latin1 c'tor of QString, it is safe to use it here though (we only get IN/OUT and a mac address)
Diffstat (limited to 'noncore/net/opietooth/blue-pin/main.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/main.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/opietooth/blue-pin/main.cc b/noncore/net/opietooth/blue-pin/main.cc
index dbe5b41..90d42e0 100644
--- a/noncore/net/opietooth/blue-pin/main.cc
+++ b/noncore/net/opietooth/blue-pin/main.cc
@@ -4,8 +4,13 @@
#include <qpe/qpeapplication.h>
#include <opie2/oapplicationfactory.h>
#include "pindlg.h"
-using namespace Opie::Core;
-OPIE_EXPORT_APP( OApplicationFactory<OpieTooth::PinDlg> )
+int main(int argc, char *argv[]) {
+ QPEApplication oapp(argc, argv);
+
+ OpieTooth::PinDlg dlg;
+ return oapp.exec();
+}
+