author | ar <ar> | 2004-05-31 13:04:55 (UTC) |
---|---|---|
committer | ar <ar> | 2004-05-31 13:04:55 (UTC) |
commit | 27b09fe4f930b96e82cea9fb0eb1a9b87f7ec062 (patch) (unidiff) | |
tree | 5b850ee6ad8b8a48b6c49f4a6ce10e75caf234e5 | |
parent | 5bd7c2eee656e8f30635921f15770bd4a43da9e6 (diff) | |
download | opie-27b09fe4f930b96e82cea9fb0eb1a9b87f7ec062.zip opie-27b09fe4f930b96e82cea9fb0eb1a9b87f7ec062.tar.gz opie-27b09fe4f930b96e82cea9fb0eb1a9b87f7ec062.tar.bz2 |
- convert qDebug to odebug
-rw-r--r-- | noncore/apps/opie-reader/CExpander.h | 21 | ||||
-rw-r--r-- | noncore/games/zlines/linesboard.h | 12 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.cpp | 1 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/settings.h | 42 | ||||
-rw-r--r-- | noncore/settings/networksettings/ppp/modem.cpp | 1 | ||||
-rw-r--r-- | noncore/settings/tabmanager/tablistview.h | 24 |
6 files changed, 53 insertions, 48 deletions
diff --git a/noncore/apps/opie-reader/CExpander.h b/noncore/apps/opie-reader/CExpander.h index 9fae245..553069c 100644 --- a/noncore/apps/opie-reader/CExpander.h +++ b/noncore/apps/opie-reader/CExpander.h | |||
@@ -1,22 +1,29 @@ | |||
1 | #ifndef __CExpander_h | 1 | #ifndef __CExpander_h |
2 | #define __CExpander_h | 2 | #define __CExpander_h |
3 | 3 | ||
4 | #ifndef _WINDOWS | ||
5 | #include <unistd.h> | ||
6 | #endif | ||
7 | #include <stdio.h> | ||
8 | #include <time.h> | ||
9 | #include <qmessagebox.h> | ||
10 | #include "useqpe.h" | 4 | #include "useqpe.h" |
11 | #include "config.h" | 5 | #include "config.h" |
12 | #include "StyleConsts.h" | 6 | #include "StyleConsts.h" |
13 | #include "Markups.h" | 7 | #include "Markups.h" |
14 | #include "names.h" | 8 | #include "names.h" |
15 | #include "linktype.h" | 9 | #include "linktype.h" |
16 | 10 | ||
11 | /* OPIE */ | ||
12 | #include <opie2/odebug.h> | ||
13 | |||
14 | /* QT */ | ||
15 | #include <qmessagebox.h> | ||
16 | |||
17 | /* STD */ | ||
18 | #ifndef _WINDOWS | ||
19 | #include <unistd.h> | ||
20 | #endif | ||
21 | #include <stdio.h> | ||
22 | #include <time.h> | ||
23 | |||
17 | class QImage; | 24 | class QImage; |
18 | class Bkmk; | 25 | class Bkmk; |
19 | 26 | ||
20 | template<class T> | 27 | template<class T> |
21 | class CList; | 28 | class CList; |
22 | 29 | ||
@@ -140,12 +147,12 @@ class CExpander | |||
140 | memcpy(data, src, len); | 147 | memcpy(data, src, len); |
141 | } | 148 | } |
142 | virtual void putSaveData(unsigned char*& src, unsigned short& srclen) | 149 | virtual void putSaveData(unsigned char*& src, unsigned short& srclen) |
143 | { | 150 | { |
144 | if (srclen != 0) | 151 | if (srclen != 0) |
145 | { | 152 | { |
146 | qDebug("Don't know what to do with non-zero save data"); | 153 | odebug << "Don't know what to do with non-zero save data" << oendl; |
147 | } | 154 | } |
148 | } | 155 | } |
149 | void setwidth(int w) { m_scrWidth = w; } | 156 | void setwidth(int w) { m_scrWidth = w; } |
150 | }; | 157 | }; |
151 | #endif | 158 | #endif |
diff --git a/noncore/games/zlines/linesboard.h b/noncore/games/zlines/linesboard.h index 97697cd..58478ee 100644 --- a/noncore/games/zlines/linesboard.h +++ b/noncore/games/zlines/linesboard.h | |||
@@ -24,20 +24,12 @@ | |||
24 | #include <qtimer.h> | 24 | #include <qtimer.h> |
25 | 25 | ||
26 | #include "field.h" | 26 | #include "field.h" |
27 | //#include "shotcounter.h" | 27 | //#include "shotcounter.h" |
28 | #include "ballpainter.h" | 28 | #include "ballpainter.h" |
29 | 29 | ||
30 | #ifdef Q_WS_QWS | ||
31 | #define debug (void) | ||
32 | #else | ||
33 | #define debug qDebug | ||
34 | #endif | ||
35 | #define fatal qFatal | ||
36 | #define warning qWarning | ||
37 | |||
38 | class LinesBoard : public Field | 30 | class LinesBoard : public Field |
39 | { | 31 | { |
40 | Q_OBJECT | 32 | Q_OBJECT |
41 | public: | 33 | public: |
42 | LinesBoard( BallPainter * abPainter, QWidget* parent=0, const char* name=0 ); | 34 | LinesBoard( BallPainter * abPainter, QWidget* parent=0, const char* name=0 ); |
43 | ~LinesBoard(); | 35 | ~LinesBoard(); |
@@ -45,26 +37,26 @@ public: | |||
45 | int width(); | 37 | int width(); |
46 | int height(); | 38 | int height(); |
47 | int wHint(); | 39 | int wHint(); |
48 | int hHint(); | 40 | int hHint(); |
49 | // void doAfterBalls(); | 41 | // void doAfterBalls(); |
50 | void placeBalls(int nextBalls[BALLSDROP]); | 42 | void placeBalls(int nextBalls[BALLSDROP]); |
51 | void undo(); | 43 | void undo(); |
52 | 44 | ||
53 | signals: | 45 | signals: |
54 | void endTurn(); | 46 | void endTurn(); |
55 | void endGame(); | 47 | void endGame(); |
56 | void eraseLine(int nb); | 48 | void eraseLine(int nb); |
57 | 49 | ||
58 | private: | 50 | private: |
59 | int anim; | 51 | int anim; |
60 | 52 | ||
61 | struct Waypoints { | 53 | struct Waypoints { |
62 | int x,y; | 54 | int x,y; |
63 | } *way; | 55 | } *way; |
64 | int nextBalls[BALLSDROP]; | 56 | int nextBalls[BALLSDROP]; |
65 | 57 | ||
66 | int animmax; | 58 | int animmax; |
67 | 59 | ||
68 | //used for running and animation phase | 60 | //used for running and animation phase |
69 | int painting; | 61 | int painting; |
70 | int animstep; | 62 | int animstep; |
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp index 203ff91..ba4e11a 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp | |||
@@ -35,13 +35,12 @@ | |||
35 | 35 | ||
36 | #include <qpe/config.h> | 36 | #include <qpe/config.h> |
37 | #include "mediaplayerstate.h" | 37 | #include "mediaplayerstate.h" |
38 | 38 | ||
39 | #include <assert.h> | 39 | #include <assert.h> |
40 | 40 | ||
41 | //#define MediaPlayerDebug(x) qDebug x | ||
42 | #define MediaPlayerDebug(x) | 41 | #define MediaPlayerDebug(x) |
43 | 42 | ||
44 | 43 | ||
45 | MediaPlayerState::MediaPlayerState( QObject *parent, const char *name ) | 44 | MediaPlayerState::MediaPlayerState( QObject *parent, const char *name ) |
46 | : QObject( parent, name ) { | 45 | : QObject( parent, name ) { |
47 | Config cfg( "OpiePlayer" ); | 46 | Config cfg( "OpiePlayer" ); |
diff --git a/noncore/net/mail/libmailwrapper/settings.h b/noncore/net/mail/libmailwrapper/settings.h index 27e2823..bf27b97 100644 --- a/noncore/net/mail/libmailwrapper/settings.h +++ b/noncore/net/mail/libmailwrapper/settings.h | |||
@@ -1,63 +1,67 @@ | |||
1 | #ifndef SETTINGS_H | 1 | #ifndef SETTINGS_H |
2 | #define SETTINGS_H | 2 | #define SETTINGS_H |
3 | 3 | ||
4 | #include "maildefines.h" | 4 | #include "maildefines.h" |
5 | 5 | ||
6 | /* OPIE */ | ||
7 | #include <opie2/odebug.h> | ||
8 | |||
9 | /* QT */ | ||
6 | #include <qobject.h> | 10 | #include <qobject.h> |
7 | #include <qlist.h> | 11 | #include <qlist.h> |
8 | 12 | ||
9 | class Account | 13 | class Account |
10 | { | 14 | { |
11 | 15 | ||
12 | public: | 16 | public: |
13 | Account(); | 17 | Account(); |
14 | virtual ~Account() {} | 18 | virtual ~Account() {} |
15 | 19 | ||
16 | void remove(); | 20 | void remove(); |
17 | void setAccountName( QString name ) { accountName = name; } | 21 | void setAccountName( QString name ) { accountName = name; } |
18 | const QString&getAccountName()const{ return accountName; } | 22 | const QString&getAccountName()const{ return accountName; } |
19 | MAILLIB::ATYPE getType()const{ return type; } | 23 | MAILLIB::ATYPE getType()const{ return type; } |
20 | 24 | ||
21 | void setServer(const QString&str){ server = str; } | 25 | void setServer(const QString&str){ server = str; } |
22 | const QString&getServer()const{ return server; } | 26 | const QString&getServer()const{ return server; } |
23 | 27 | ||
24 | void setPort(const QString&str) { port = str; } | 28 | void setPort(const QString&str) { port = str; } |
25 | const QString&getPort()const{ return port; } | 29 | const QString&getPort()const{ return port; } |
26 | 30 | ||
27 | void setUser(const QString&str){ user = str; } | 31 | void setUser(const QString&str){ user = str; } |
28 | const QString&getUser()const{ return user; } | 32 | const QString&getUser()const{ return user; } |
29 | 33 | ||
30 | void setPassword(const QString&str) { password = str; } | 34 | void setPassword(const QString&str) { password = str; } |
31 | const QString&getPassword()const { return password; } | 35 | const QString&getPassword()const { return password; } |
32 | 36 | ||
33 | void setSSL( bool b ) { ssl = b; } | 37 | void setSSL( bool b ) { ssl = b; } |
34 | bool getSSL() { return ssl; } | 38 | bool getSSL() { return ssl; } |
35 | 39 | ||
36 | void setConnectionType( int x ) { connectionType = x; } | 40 | void setConnectionType( int x ) { connectionType = x; } |
37 | int ConnectionType() { return connectionType; } | 41 | int ConnectionType() { return connectionType; } |
38 | 42 | ||
39 | 43 | ||
40 | void setOffline(bool b) {offline = b;} | 44 | void setOffline(bool b) {offline = b;} |
41 | bool getOffline()const{return offline;} | 45 | bool getOffline()const{return offline;} |
42 | 46 | ||
43 | virtual QString getFileName() { return accountName; } | 47 | virtual QString getFileName() { return accountName; } |
44 | virtual void read() { qDebug( "base reading..." ); } | 48 | virtual void read() { odebug << "base reading..." << oendl; } |
45 | virtual void save() { qDebug( "base saving..." ); } | 49 | virtual void save() { odebug << "base saving..." << oendl; } |
46 | 50 | ||
47 | protected: | 51 | protected: |
48 | QString accountName, server, port, user, password; | 52 | QString accountName, server, port, user, password; |
49 | bool ssl; | 53 | bool ssl; |
50 | int connectionType; | 54 | int connectionType; |
51 | bool offline; | 55 | bool offline; |
52 | MAILLIB::ATYPE type; | 56 | MAILLIB::ATYPE type; |
53 | }; | 57 | }; |
54 | 58 | ||
55 | class IMAPaccount : public Account | 59 | class IMAPaccount : public Account |
56 | { | 60 | { |
57 | 61 | ||
58 | public: | 62 | public: |
59 | IMAPaccount(); | 63 | IMAPaccount(); |
60 | IMAPaccount( QString filename ); | 64 | IMAPaccount( QString filename ); |
61 | 65 | ||
62 | static QString getUniqueFileName(); | 66 | static QString getUniqueFileName(); |
63 | 67 | ||
@@ -72,31 +76,31 @@ private: | |||
72 | QString file,prefix; | 76 | QString file,prefix; |
73 | 77 | ||
74 | }; | 78 | }; |
75 | 79 | ||
76 | class POP3account : public Account | 80 | class POP3account : public Account |
77 | { | 81 | { |
78 | 82 | ||
79 | public: | 83 | public: |
80 | POP3account(); | 84 | POP3account(); |
81 | POP3account( QString filename ); | 85 | POP3account( QString filename ); |
82 | 86 | ||
83 | static QString getUniqueFileName(); | 87 | static QString getUniqueFileName(); |
84 | 88 | ||
85 | virtual void read(); | 89 | virtual void read(); |
86 | virtual void save(); | 90 | virtual void save(); |
87 | virtual QString getFileName(); | 91 | virtual QString getFileName(); |
88 | 92 | ||
89 | private: | 93 | private: |
90 | QString file; | 94 | QString file; |
91 | 95 | ||
92 | }; | 96 | }; |
93 | 97 | ||
94 | class SMTPaccount : public Account | 98 | class SMTPaccount : public Account |
95 | { | 99 | { |
96 | 100 | ||
97 | public: | 101 | public: |
98 | SMTPaccount(); | 102 | SMTPaccount(); |
99 | SMTPaccount( QString filename ); | 103 | SMTPaccount( QString filename ); |
100 | 104 | ||
101 | static QString getUniqueFileName(); | 105 | static QString getUniqueFileName(); |
102 | 106 | ||
@@ -112,13 +116,13 @@ private: | |||
112 | bool useCC, useBCC, useReply, login; | 116 | bool useCC, useBCC, useReply, login; |
113 | 117 | ||
114 | }; | 118 | }; |
115 | 119 | ||
116 | class NNTPaccount : public Account | 120 | class NNTPaccount : public Account |
117 | { | 121 | { |
118 | 122 | ||
119 | public: | 123 | public: |
120 | NNTPaccount(); | 124 | NNTPaccount(); |
121 | NNTPaccount( QString filename ); | 125 | NNTPaccount( QString filename ); |
122 | 126 | ||
123 | static QString getUniqueFileName(); | 127 | static QString getUniqueFileName(); |
124 | 128 | ||
@@ -127,13 +131,13 @@ public: | |||
127 | virtual QString getFileName(); | 131 | virtual QString getFileName(); |
128 | 132 | ||
129 | void setLogin( bool b ) { login = b; } | 133 | void setLogin( bool b ) { login = b; } |
130 | bool getLogin() { return login; } | 134 | bool getLogin() { return login; } |
131 | 135 | ||
132 | void setGroups( QStringList list ) { subscribedGroups = list; } | 136 | void setGroups( QStringList list ) { subscribedGroups = list; } |
133 | QStringList getGroups() { return subscribedGroups; } | 137 | QStringList getGroups() { return subscribedGroups; } |
134 | 138 | ||
135 | private: | 139 | private: |
136 | QString file; | 140 | QString file; |
137 | bool login; | 141 | bool login; |
138 | QStringList subscribedGroups; | 142 | QStringList subscribedGroups; |
139 | 143 | ||
@@ -152,10 +156,10 @@ public: | |||
152 | void readAccounts(); | 156 | void readAccounts(); |
153 | static void checkDirectory(); | 157 | static void checkDirectory(); |
154 | 158 | ||
155 | private: | 159 | private: |
156 | void updateAccounts(); | 160 | void updateAccounts(); |
157 | QList<Account> accounts; | 161 | QList<Account> accounts; |
158 | 162 | ||
159 | }; | 163 | }; |
160 | 164 | ||
161 | #endif | 165 | #endif |
diff --git a/noncore/settings/networksettings/ppp/modem.cpp b/noncore/settings/networksettings/ppp/modem.cpp index 3bc7d43..79f015b 100644 --- a/noncore/settings/networksettings/ppp/modem.cpp +++ b/noncore/settings/networksettings/ppp/modem.cpp | |||
@@ -53,13 +53,12 @@ using namespace Opie::Core; | |||
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | #define strlcpy strcpy | 55 | #define strlcpy strcpy |
56 | #include "auth.h" | 56 | #include "auth.h" |
57 | #include "modem.h" | 57 | #include "modem.h" |
58 | #include "pppdata.h" | 58 | #include "pppdata.h" |
59 | #define qError qDebug | ||
60 | 59 | ||
61 | 60 | ||
62 | #define MY_ASSERT(x) if (!(x)) { \ | 61 | #define MY_ASSERT(x) if (!(x)) { \ |
63 | ofatal << "ASSERT: \"" << #x << "\" in " << __FILE__ << " (" << __LINE__ << ")\n" << oendl; \ | 62 | ofatal << "ASSERT: \"" << #x << "\" in " << __FILE__ << " (" << __LINE__ << ")\n" << oendl; \ |
64 | exit(1); } | 63 | exit(1); } |
65 | 64 | ||
diff --git a/noncore/settings/tabmanager/tablistview.h b/noncore/settings/tabmanager/tablistview.h index dfd88f7..54b87b6 100644 --- a/noncore/settings/tabmanager/tablistview.h +++ b/noncore/settings/tabmanager/tablistview.h | |||
@@ -1,65 +1,69 @@ | |||
1 | #ifndef TABLISTVIEW_H | 1 | #ifndef TABLISTVIEW_H |
2 | #define TABLISTVIEW_H | 2 | #define TABLISTVIEW_H |
3 | 3 | ||
4 | /* OPIE */ | ||
5 | #include <opie2/odebug.h> | ||
6 | |||
7 | /* QT */ | ||
4 | #include <qlistview.h> | 8 | #include <qlistview.h> |
5 | #include <qcursor.h> | 9 | #include <qcursor.h> |
6 | #include <qapplication.h> | 10 | #include <qapplication.h> |
7 | 11 | ||
8 | class TabListView : public QListView { | 12 | class TabListView : public QListView { |
9 | Q_OBJECT | 13 | Q_OBJECT |
10 | 14 | ||
11 | signals: | 15 | signals: |
12 | void moveItem(QListViewItem *item, QListViewItem *newFolder); | 16 | void moveItem(QListViewItem *item, QListViewItem *newFolder); |
13 | 17 | ||
14 | public: | 18 | public: |
15 | TabListView( QWidget* parent = 0, const char* name = 0) : QListView(parent, name){ currentSelectedItem = NULL; | 19 | TabListView( QWidget* parent = 0, const char* name = 0) : QListView(parent, name){ currentSelectedItem = NULL; |
16 | connect(this, SIGNAL(pressed ( QListViewItem *)), this, SLOT(itemPressed(QListViewItem *))); | 20 | connect(this, SIGNAL(pressed ( QListViewItem *)), this, SLOT(itemPressed(QListViewItem *))); |
17 | internalCursor.setShape(0); | 21 | internalCursor.setShape(0); |
18 | }; | 22 | }; |
19 | 23 | ||
20 | protected: | 24 | protected: |
21 | void contentsMouseReleaseEvent(QMouseEvent* ){ | 25 | void contentsMouseReleaseEvent(QMouseEvent* ){ |
22 | QListViewItem *newGroup = this->currentItem(); | 26 | QListViewItem *newGroup = this->currentItem(); |
23 | // Make sure they are both real. | 27 | // Make sure they are both real. |
24 | if (currentSelectedItem == NULL || newGroup == NULL) | 28 | if (currentSelectedItem == NULL || newGroup == NULL) |
25 | return; | 29 | return; |
26 | // Make sure they are not the same | 30 | // Make sure they are not the same |
27 | if(this->isSelected(currentSelectedItem) == true) | 31 | if(this->isSelected(currentSelectedItem) == true) |
28 | return; | 32 | return; |
29 | 33 | ||
30 | // Ok we have two valid items. | 34 | // Ok we have two valid items. |
31 | if(newGroup->parent()) | 35 | if(newGroup->parent()) |
32 | newGroup = newGroup->parent(); | 36 | newGroup = newGroup->parent(); |
33 | 37 | ||
34 | // Just in case the parent was null | 38 | // Just in case the parent was null |
35 | if(newGroup == NULL) | 39 | if(newGroup == NULL) |
36 | return; | 40 | return; |
37 | 41 | ||
38 | // If the new folder and buddies current parent are the same don't do anything. | 42 | // If the new folder and buddies current parent are the same don't do anything. |
39 | if (newGroup != currentSelectedItem->parent()) | 43 | if (newGroup != currentSelectedItem->parent()) |
40 | moveItem(currentSelectedItem, newGroup); | 44 | moveItem(currentSelectedItem, newGroup); |
41 | currentSelectedItem = NULL; | 45 | currentSelectedItem = NULL; |
42 | qApp->restoreOverrideCursor(); | 46 | qApp->restoreOverrideCursor(); |
43 | }; | 47 | }; |
44 | 48 | ||
45 | private slots: | 49 | private slots: |
46 | void itemPressed(QListViewItem *item){ | 50 | void itemPressed(QListViewItem *item){ |
47 | if(item == NULL || !item->parent()){ | 51 | if(item == NULL || !item->parent()){ |
48 | if(item == NULL) | 52 | if(item == NULL) |
49 | qDebug("Item is NULL"); | 53 | odebug << "Item is NULL" << oendl; |
50 | return; | 54 | return; |
51 | } | 55 | } |
52 | 56 | ||
53 | currentSelectedItem = item; | 57 | currentSelectedItem = item; |
54 | internalCursor.setShape(13); | 58 | internalCursor.setShape(13); |
55 | qApp->setOverrideCursor(internalCursor); | 59 | qApp->setOverrideCursor(internalCursor); |
56 | }; | 60 | }; |
57 | 61 | ||
58 | 62 | ||
59 | private: | 63 | private: |
60 | QListViewItem *currentSelectedItem; | 64 | QListViewItem *currentSelectedItem; |
61 | QCursor internalCursor; | 65 | QCursor internalCursor; |
62 | }; | 66 | }; |
63 | 67 | ||
64 | #endif | 68 | #endif |
65 | 69 | ||