Added message box when attempting to push or pull when no remote url has been set FossilOrigin-Name: 3adc2a837ceb5080094dede9f0f3bdeb0e0429f0
15 lines
387 B
C
15 lines
387 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <QString>
|
|
#include <QMessageBox>
|
|
|
|
QMessageBox::StandardButton DialogQuery(QWidget *parent, const QString &title, const QString &query, QMessageBox::StandardButtons buttons = QMessageBox::Yes|QMessageBox::No);
|
|
|
|
#ifdef Q_WS_WIN
|
|
bool ShowExplorerMenu(HWND hwnd, const QString &path, const QPoint &qpoint);
|
|
#endif
|
|
|
|
|
|
#endif // UTILS_H
|