author | mickeyl <mickeyl> | 2006-05-25 22:35:51 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2006-05-25 22:35:51 (UTC) |
commit | 7cfd27c0f29c6d7e2b90ce718d762433b82c1fe3 (patch) (unidiff) | |
tree | 817b7d3383348b4654c63b216c31de71e73ef6c9 | |
parent | debf4dfe9a9ca9103aa9f8fa2db5f0b5fed08952 (diff) | |
download | opie-7cfd27c0f29c6d7e2b90ce718d762433b82c1fe3.zip opie-7cfd27c0f29c6d7e2b90ce718d762433b82c1fe3.tar.gz opie-7cfd27c0f29c6d7e2b90ce718d762433b82c1fe3.tar.bz2 |
g++ 4.1.1 fix
-rw-r--r-- | noncore/apps/opie-reader/infowin.h | 2 | ||||
-rw-r--r-- | noncore/apps/opie-sheet/sheet.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/opie-reader/infowin.h b/noncore/apps/opie-reader/infowin.h index 6f0fb99..c003998 100644 --- a/noncore/apps/opie-reader/infowin.h +++ b/noncore/apps/opie-reader/infowin.h | |||
@@ -14,17 +14,17 @@ Q_OBJECT | |||
14 | QLabel* location; | 14 | QLabel* location; |
15 | QLabel* read; | 15 | QLabel* read; |
16 | QLabel* docread; | 16 | QLabel* docread; |
17 | QLabel* docSize; | 17 | QLabel* docSize; |
18 | QLabel* docLocation; | 18 | QLabel* docLocation; |
19 | QLabel* zoom; | 19 | QLabel* zoom; |
20 | QMultiLineEdit* aboutbox; | 20 | QMultiLineEdit* aboutbox; |
21 | public: | 21 | public: |
22 | infowin::infowin( QWidget *parent=0, const char *name=0, WFlags f = 0); | 22 | infowin( QWidget *parent=0, const char *name=0, WFlags f = 0); |
23 | void setFileSize(int sz) { fileSize->setNum(sz); } | 23 | void setFileSize(int sz) { fileSize->setNum(sz); } |
24 | void setTextSize(int sz) { textSize->setNum(sz); } | 24 | void setTextSize(int sz) { textSize->setNum(sz); } |
25 | void setRatio(int sz) { ratio->setText(QString().setNum(sz)+"%"); } | 25 | void setRatio(int sz) { ratio->setText(QString().setNum(sz)+"%"); } |
26 | void setLocation(int sz) { location->setNum(sz); } | 26 | void setLocation(int sz) { location->setNum(sz); } |
27 | void setRead(int sz) { read->setText(QString().setNum(sz)+"%"); } | 27 | void setRead(int sz) { read->setText(QString().setNum(sz)+"%"); } |
28 | void setDocRead(int sz) { docread->setText(QString().setNum(sz)+"%"); } | 28 | void setDocRead(int sz) { docread->setText(QString().setNum(sz)+"%"); } |
29 | void setZoom(int sz) { zoom->setText(QString().setNum(sz)+"%"); } | 29 | void setZoom(int sz) { zoom->setText(QString().setNum(sz)+"%"); } |
30 | void setDocSize(int sz) { docSize->setNum(sz); } | 30 | void setDocSize(int sz) { docSize->setNum(sz); } |
diff --git a/noncore/apps/opie-sheet/sheet.h b/noncore/apps/opie-sheet/sheet.h index 92c8061..8938511 100644 --- a/noncore/apps/opie-sheet/sheet.h +++ b/noncore/apps/opie-sheet/sheet.h | |||
@@ -89,17 +89,17 @@ public: | |||
89 | void Third(); | 89 | void Third(); |
90 | void Fourth(); | 90 | void Fourth(); |
91 | void Fifth(); | 91 | void Fifth(); |
92 | void Sixth(); | 92 | void Sixth(); |
93 | void Seventh(); | 93 | void Seventh(); |
94 | void Eighth(); | 94 | void Eighth(); |
95 | void Ninth(); | 95 | void Ninth(); |
96 | 96 | ||
97 | bool Expression::Parse(); //parses the expression in RPN format; | 97 | bool Parse(); //parses the expression in RPN format; |
98 | 98 | ||
99 | }; | 99 | }; |
100 | 100 | ||
101 | 101 | ||
102 | 102 | ||
103 | class Sheet: public QTable | 103 | class Sheet: public QTable |
104 | { | 104 | { |
105 | Q_OBJECT | 105 | Q_OBJECT |