author | aquadran <aquadran> | 2006-05-04 05:40:22 (UTC) |
---|---|---|
committer | aquadran <aquadran> | 2006-05-04 05:40:22 (UTC) |
commit | 9e9148941974ce65fb733b14dd8bb15fe099ec2c (patch) (unidiff) | |
tree | e07db54c1bef85853f7037478c0f0ff56b09779e | |
parent | 1240155cf5865df0d0ce0e4bd04dfec68ec1ede5 (diff) | |
download | opie-9e9148941974ce65fb733b14dd8bb15fe099ec2c.zip opie-9e9148941974ce65fb733b14dd8bb15fe099ec2c.tar.gz opie-9e9148941974ce65fb733b14dd8bb15fe099ec2c.tar.bz2 |
fixed compilation opieobex
-rw-r--r-- | core/obex/btobex.cpp | 4 | ||||
-rw-r--r-- | core/obex/btobex.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/obex/btobex.cpp b/core/obex/btobex.cpp index bb5c06d..b8556da 100644 --- a/core/obex/btobex.cpp +++ b/core/obex/btobex.cpp | |||
@@ -1,28 +1,28 @@ | |||
1 | 1 | ||
2 | #include "btobex.h" | 2 | #include "btobex.h" |
3 | #include <manager.h> | 3 | #include <opietooth/manager.h> |
4 | #include <services.h> | 4 | #include <opietooth/services.h> |
5 | 5 | ||
6 | /* OPIE */ | 6 | /* OPIE */ |
7 | #include <opie2/oprocess.h> | 7 | #include <opie2/oprocess.h> |
8 | #include <opie2/odebug.h> | 8 | #include <opie2/odebug.h> |
9 | 9 | ||
10 | /* QT */ | 10 | /* QT */ |
11 | #include <qfileinfo.h> | 11 | #include <qfileinfo.h> |
12 | #include <qstring.h> | 12 | #include <qstring.h> |
13 | #include <qmap.h> | 13 | #include <qmap.h> |
14 | #include <qmessagebox.h> | 14 | #include <qmessagebox.h> |
15 | 15 | ||
16 | using namespace OpieObex; | 16 | using namespace OpieObex; |
17 | 17 | ||
18 | using namespace Opie::Core; | 18 | using namespace Opie::Core; |
19 | /* TRANSLATOR OpieObex::Obex */ | 19 | /* TRANSLATOR OpieObex::Obex */ |
20 | using namespace OpieTooth; | 20 | using namespace OpieTooth; |
21 | 21 | ||
22 | BtObex::BtObex( QObject *parent, const char* name ) | 22 | BtObex::BtObex( QObject *parent, const char* name ) |
23 | : QObject(parent, name ) | 23 | : QObject(parent, name ) |
24 | { | 24 | { |
25 | m_rec = 0; | 25 | m_rec = 0; |
26 | m_send=0; | 26 | m_send=0; |
27 | m_count = 0; | 27 | m_count = 0; |
28 | m_receive = false; | 28 | m_receive = false; |
diff --git a/core/obex/btobex.h b/core/obex/btobex.h index 099f04a..ba50064 100644 --- a/core/obex/btobex.h +++ b/core/obex/btobex.h | |||
@@ -1,32 +1,32 @@ | |||
1 | 1 | ||
2 | 2 | ||
3 | #ifndef OpieBtObex_H | 3 | #ifndef OpieBtObex_H |
4 | #define OpieBtObex_H | 4 | #define OpieBtObex_H |
5 | 5 | ||
6 | #include <qobject.h> | 6 | #include <qobject.h> |
7 | #include <services.h> | 7 | #include <opietooth/services.h> |
8 | #include <manager.h> | 8 | #include <opietooth/manager.h> |
9 | 9 | ||
10 | namespace Opie {namespace Core {class OProcess;}} | 10 | namespace Opie {namespace Core {class OProcess;}} |
11 | class QCopChannel; | 11 | class QCopChannel; |
12 | using namespace OpieTooth; | 12 | using namespace OpieTooth; |
13 | namespace OpieObex { | 13 | namespace OpieObex { |
14 | // Maybe this should be derved from Obex. | 14 | // Maybe this should be derved from Obex. |
15 | class BtObex : public QObject { | 15 | class BtObex : public QObject { |
16 | Q_OBJECT | 16 | Q_OBJECT |
17 | public: | 17 | public: |
18 | /** | 18 | /** |
19 | * BtObex c'tor look | 19 | * BtObex c'tor look |
20 | */ | 20 | */ |
21 | BtObex( QObject *parent, const char* name); | 21 | BtObex( QObject *parent, const char* name); |
22 | /** | 22 | /** |
23 | * d'tor | 23 | * d'tor |
24 | */ | 24 | */ |
25 | ~BtObex(); | 25 | ~BtObex(); |
26 | 26 | ||
27 | /** TODO mbhaynie -- Maybe opd would be a better way to receive. | 27 | /** TODO mbhaynie -- Maybe opd would be a better way to receive. |
28 | * Starting listening to Bluetooth after enabled by the applet | 28 | * Starting listening to Bluetooth after enabled by the applet |
29 | * a signal gets emitted when received a file | 29 | * a signal gets emitted when received a file |
30 | */ | 30 | */ |
31 | void receive(); | 31 | void receive(); |
32 | void send( const QString&, const QString& ); | 32 | void send( const QString&, const QString& ); |