Mercurial plugin, merge request with suggested fixes.

This commit is contained in:
Brian McGillion
2009-09-15 13:03:13 +03:00
parent 0915342d15
commit 989e1b5acf
42 changed files with 3504 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
#ifndef SRCDESTDIALOG_H
#define SRCDESTDIALOG_H
#include <QtGui/QDialog>
#include <utils/pathchooser.h>
namespace Mercurial {
namespace Internal {
namespace Ui {
class SrcDestDialog;
}
class SrcDestDialog : public QDialog
{
Q_OBJECT
public:
SrcDestDialog(QWidget *parent = 0);
~SrcDestDialog();
void setPathChooserKind(Core::Utils::PathChooser::Kind kind);
QString getRepositoryString();
protected:
void changeEvent(QEvent *e);
private:
Ui::SrcDestDialog *m_ui;
};
} // namespace Internal
} // namespace Mercurial
#endif // SRCDESTDIALOG_H