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

@ -10,26 +10,27 @@
#include <QTimer>
#include <QProgressBar>
class ExportLibraryDialog : public QDialog
class ExportLibraryDialog : public QDialog
{
Q_OBJECT
Q_OBJECT
public:
ExportLibraryDialog(QWidget * parent = 0);
ExportLibraryDialog(QWidget *parent = 0);
public slots:
void exportLibrary();
void findPath();
void close();
void exportLibrary();
void findPath();
void close();
private:
int progressCount;
QProgressBar *progressBar;
QLabel * textLabel;
QLineEdit * path;
QPushButton * find;
QPushButton * accept;
QPushButton * cancel;
void run();
int progressCount;
QProgressBar *progressBar;
QLabel *textLabel;
QLineEdit *path;
QPushButton *find;
QPushButton *accept;
QPushButton *cancel;
void run();
signals:
void exportPath(QString);
void exportPath(QString);
};
#endif