Artifact e5ebab82b3455f2ea06d92e6b9eb18355470076c:
- File Utils.h — part of check-in [3ce654a76b] at 2011-10-21 15:01:22 on branch trunk — Moved DialogQuery to Utils.h/.cpp Added clear commit message history option in settings (user: kostas size: 287)
#ifndef UTILS_H #define UTILS_H #include <QString> #include <QWidget> enum DialogAnswer { ANSWER_YES, ANSWER_NO, ANSWER_YESALL }; DialogAnswer DialogQuery(QWidget *parent, const QString &title, const QString &query, bool yesToAllButton=false); #endif // UTILS_H