summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2006-05-25 22:25:45 (UTC)
committer mickeyl <mickeyl>2006-05-25 22:25:45 (UTC)
commitedc6b08e3914537d6885e3474036ad4924f185f3 (patch) (unidiff)
tree755be9de7fd3ad8a274ec8ac4515c3e92999a4e9
parent1004aa580c4f115b9959027deb7f19997adc9df8 (diff)
downloadopie-edc6b08e3914537d6885e3474036ad4924f185f3.zip
opie-edc6b08e3914537d6885e3474036ad4924f185f3.tar.gz
opie-edc6b08e3914537d6885e3474036ad4924f185f3.tar.bz2
g++ 4.1.1 fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/notes/editwindow.h2
-rw-r--r--inputmethods/multikey/configdlg.h2
-rw-r--r--noncore/games/minesweep/minefield.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/core/pim/notes/editwindow.h b/core/pim/notes/editwindow.h
index 57c5241..30c44d6 100644
--- a/core/pim/notes/editwindow.h
+++ b/core/pim/notes/editwindow.h
@@ -8,13 +8,13 @@
8 8
9class editWindowWidget : public QDialog 9class editWindowWidget : public QDialog
10{ 10{
11 Q_OBJECT 11 Q_OBJECT
12 12
13 public: 13 public:
14 editWindowWidget::editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0); 14 editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
15 ~editWindowWidget(); 15 ~editWindowWidget();
16 void loadFile(QString fileName); 16 void loadFile(QString fileName);
17 void saveFile(QString fileName); 17 void saveFile(QString fileName);
18 18
19 private: 19 private:
20 QMultiLineEdit *editArea; 20 QMultiLineEdit *editArea;
diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h
index 91ae429..8e96e9b 100644
--- a/inputmethods/multikey/configdlg.h
+++ b/inputmethods/multikey/configdlg.h
@@ -10,13 +10,13 @@
10class ConfigDlg : public QDialog 10class ConfigDlg : public QDialog
11{ 11{
12 Q_OBJECT 12 Q_OBJECT
13 13
14public: 14public:
15 ConfigDlg (); 15 ConfigDlg ();
16 static QStringList ConfigDlg::loadSw(); 16 static QStringList loadSw();
17 17
18signals: 18signals:
19 void pickboardToggled(bool on_off); 19 void pickboardToggled(bool on_off);
20 void repeatToggled(bool on_off); 20 void repeatToggled(bool on_off);
21 void setMapToDefault(); 21 void setMapToDefault();
22 void setMapToFile(QString map); 22 void setMapToFile(QString map);
diff --git a/noncore/games/minesweep/minefield.h b/noncore/games/minesweep/minefield.h
index e243d77..8d0f754 100644
--- a/noncore/games/minesweep/minefield.h
+++ b/noncore/games/minesweep/minefield.h
@@ -79,14 +79,14 @@ protected slots:
79 79
80private: 80private:
81 int findCellSize(); 81 int findCellSize();
82 void setCellSize( int ); 82 void setCellSize( int );
83 83
84 State stat; 84 State stat;
85 void MineField::setState( State st ); 85 void setState( State st );
86 void MineField::placeMines(); 86 void placeMines();
87 enum FlagAction { NoAction, FlagOn, FlagNext }; 87 enum FlagAction { NoAction, FlagOn, FlagNext };
88 FlagAction flagAction; 88 FlagAction flagAction;
89 bool ignoreClick; 89 bool ignoreClick;
90 int currRow; 90 int currRow;
91 int currCol; 91 int currCol;
92 int numRows, numCols; 92 int numRows, numCols;