author | mickeyl <mickeyl> | 2006-05-25 22:25:45 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2006-05-25 22:25:45 (UTC) |
commit | edc6b08e3914537d6885e3474036ad4924f185f3 (patch) (side-by-side diff) | |
tree | 755be9de7fd3ad8a274ec8ac4515c3e92999a4e9 | |
parent | 1004aa580c4f115b9959027deb7f19997adc9df8 (diff) | |
download | opie-edc6b08e3914537d6885e3474036ad4924f185f3.zip opie-edc6b08e3914537d6885e3474036ad4924f185f3.tar.gz opie-edc6b08e3914537d6885e3474036ad4924f185f3.tar.bz2 |
g++ 4.1.1 fix
-rw-r--r-- | core/pim/notes/editwindow.h | 2 | ||||
-rw-r--r-- | inputmethods/multikey/configdlg.h | 2 | ||||
-rw-r--r-- | noncore/games/minesweep/minefield.h | 4 |
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 @@ -11,7 +11,7 @@ class editWindowWidget : public QDialog Q_OBJECT public: - editWindowWidget::editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0); + editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0); ~editWindowWidget(); void loadFile(QString fileName); void saveFile(QString fileName); 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 @@ -13,7 +13,7 @@ class ConfigDlg : public QDialog public: ConfigDlg (); - static QStringList ConfigDlg::loadSw(); + static QStringList loadSw(); signals: void pickboardToggled(bool on_off); 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 @@ -82,8 +82,8 @@ private: void setCellSize( int ); State stat; - void MineField::setState( State st ); - void MineField::placeMines(); + void setState( State st ); + void placeMines(); enum FlagAction { NoAction, FlagOn, FlagNext }; FlagAction flagAction; bool ignoreClick; |