Format code using clang-format

This commit is contained in:
Luis Ángel San Martín
2019-05-30 19:46:37 +02:00
parent e0eb94e3ae
commit e3ec56aa43
356 changed files with 19824 additions and 21874 deletions

View File

@ -12,41 +12,42 @@
class Importer : public QThread
{
public:
QString source;
QString dest;
QString source;
QString dest;
private:
void run();
void run();
};
class ImportComicsInfoDialog : public QDialog
{
Q_OBJECT
Q_OBJECT
public:
ImportComicsInfoDialog(QWidget *parent = 0);
~ImportComicsInfoDialog();
QString dest;
ImportComicsInfoDialog(QWidget *parent = 0);
~ImportComicsInfoDialog();
QString dest;
private:
QLabel * nameLabel;
QLabel * textLabel;
QLabel * destLabel;
QLineEdit * path;
QLineEdit * destPath;
QLineEdit * nameEdit;
QPushButton * find;
QPushButton * findDest;
QPushButton * accept;
QPushButton * cancel;
QLabel * progress;
void setupUI();
int progressCount;
QProgressBar *progressBar;
QLabel *nameLabel;
QLabel *textLabel;
QLabel *destLabel;
QLineEdit *path;
QLineEdit *destPath;
QLineEdit *nameEdit;
QPushButton *find;
QPushButton *findDest;
QPushButton *accept;
QPushButton *cancel;
QLabel *progress;
void setupUI();
int progressCount;
QProgressBar *progressBar;
public slots:
void findPath();
void import();
void close();
void findPath();
void import();
void close();
};
#endif // IMPORT_COMICS_INFO_DIALOG_H