Cosmetics: remove trailing spaces.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14723 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Antoine Cellerier 2007-09-15 22:57:07 +00:00
parent 76ea412d5f
commit 1464c9b5d0
21 changed files with 366 additions and 366 deletions

View file

@ -16,11 +16,11 @@
* KIND, either express or implied.
*
****************************************************************************/
#ifndef UNINSTALL_H
#define UNINSTALL_H
#include <QtGui>
@ -28,36 +28,36 @@
#include "progressloggerinterface.h"
class Uninstaller : public QObject
{
{
Q_OBJECT
public:
Uninstaller(QObject* parent,QString mountpoint) ;
~Uninstaller(){}
void deleteAll(ProgressloggerInterface* dp);
void uninstall(ProgressloggerInterface* dp);
bool uninstallPossible();
QStringList getAllSections();
void setSections(QStringList sections) {uninstallSections = sections;}
private slots:
private:
QString m_mountpoint;
QStringList uninstallSections;
ProgressloggerInterface* m_dp;
};
#endif