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