mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Format code using clang-format
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user