author | zecke <zecke> | 2004-03-14 20:16:17 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-14 20:16:17 (UTC) |
commit | 18dc118b49dbfb2c4d986538002a1c8f771b33ed (patch) (side-by-side diff) | |
tree | 24f65dab4b125f1bb5e95693010f045410b22331 | |
parent | 5064995ccd7a57edd2e41a2908b6402ff25995c4 (diff) | |
download | opie-18dc118b49dbfb2c4d986538002a1c8f771b33ed.zip opie-18dc118b49dbfb2c4d986538002a1c8f771b33ed.tar.gz opie-18dc118b49dbfb2c4d986538002a1c8f771b33ed.tar.bz2 |
compile fix
-rw-r--r-- | noncore/tools/euroconv/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/tools/euroconv/main.cpp b/noncore/tools/euroconv/main.cpp index d5f6c7f..dd4ff1d 100644 --- a/noncore/tools/euroconv/main.cpp +++ b/noncore/tools/euroconv/main.cpp @@ -1,12 +1,10 @@ /**************************************************************************** * -using namespace Opie::Core; -using namespace Opie::Core; * File: main.cpp * * Description: main file for OPIE Euroconv aapp * * * Authors: Eric Santonacci <Eric.Santonacci@talc.fr> * * Requirements: Qt @@ -30,10 +28,12 @@ struct Layout : QVBox{ LCDDisplay *lcd = new LCDDisplay(this, "lcd"); KeyPad *num = new KeyPad(lcd, this, "keypad"); setCaption( QObject::tr("Euroconv") ); }; }; +using namespace Opie::Core; + OPIE_EXPORT_APP( OApplicationFactory<Layout> ) |