New Action: Open containing folder New filetypes ADDED, DELETED We now detect invalid or outdated repositories FossilOrigin-Name: 2ac3cf9717f3529f809ffde1e802295988dfda05
23 lines
287 B
C++
23 lines
287 B
C++
#ifndef REPODIALOG_H
|
|
#define REPODIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class RepoDialog;
|
|
}
|
|
|
|
class RepoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RepoDialog(QWidget *parent = 0);
|
|
~RepoDialog();
|
|
|
|
private:
|
|
Ui::RepoDialog *ui;
|
|
};
|
|
|
|
#endif // REPODIALOG_H
|