diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-04-24 21:42:31 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-04-24 21:42:31 +0000 |
| commit | 6a471d8a583413b3d2b14119e562a9dff3a28f47 (patch) | |
| tree | 28be052ed725ec8160b6b95f1c3281d257ebb1f7 | |
| parent | 88455338f73160fb87822936f80159818f2fde24 (diff) | |
| download | rockbox-6a471d8a583413b3d2b14119e562a9dff3a28f47.zip rockbox-6a471d8a583413b3d2b14119e562a9dff3a28f47.tar.gz rockbox-6a471d8a583413b3d2b14119e562a9dff3a28f47.tar.bz2 rockbox-6a471d8a583413b3d2b14119e562a9dff3a28f47.tar.xz | |
Kill some warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17246 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilqt/rbsettings.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/rbsettings.h b/rbutil/rbutilqt/rbsettings.h index 815bf3b..0350667 100644 --- a/rbutil/rbutilqt/rbsettings.h +++ b/rbutil/rbutilqt/rbsettings.h @@ -141,8 +141,10 @@ class RbSettings : public QObject //! private copy constructors to prvent copying - RbSettings& operator= (const RbSettings& other) {return *this; } - RbSettings(const RbSettings& other) {} + RbSettings& operator= (const RbSettings& other) + { (void)other; return *this; } + RbSettings(const RbSettings& other) + { (void)other; } //! pointers to our setting objects QSettings *devices; |