diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2015-12-13 18:30:40 +0000 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2015-12-13 18:30:40 +0000 |
| commit | ba176e5e9b639ac0770192987833a3b40e71409a (patch) | |
| tree | 2c1a82d3fcede23e82bddf5b31768e03982d8950 /src/aboutdialog.cpp | |
| parent | c344714661a2404a54428439f0cf7dbb1573d01f (diff) | |
Remove dependency of TransferSave on SaveGameBryo, part of fix for #418
Added a method to Profile class to get location of save games for the profile. I haven't added this to IProfile as am in two minds.
Aside from this have done cleanups of issues suggested by include-what-you-use, and some OCD sorting of #includes
Diffstat (limited to 'src/aboutdialog.cpp')
| -rw-r--r-- | src/aboutdialog.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/aboutdialog.cpp b/src/aboutdialog.cpp index 6fce2acb..3657a10d 100644 --- a/src/aboutdialog.cpp +++ b/src/aboutdialog.cpp @@ -22,6 +22,14 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "ui_aboutdialog.h"
#include <utility.h>
+#include <QApplication>
+#include <QLabel>
+#include <QListWidget>
+#include <QListWidgetItem>
+#include <QTextBrowser>
+#include <QVariant>
+#include <Qt>
+
AboutDialog::AboutDialog(const QString &version, QWidget *parent)
: QDialog(parent)
|
