Git: Minor cleanup

* Remove unused includes
* Remove QObject qualification
* Use a raw pointer for widget instead of QPointer. It is owned by GitGrep.

Change-Id: I4e2c9878289ed3491bfd7b0565a683bc01e485f3
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2016-02-07 21:59:50 +02:00
committed by Orgad Shaneh
parent 974070d2c8
commit 71166d06d0
2 changed files with 6 additions and 10 deletions

View File

@@ -30,9 +30,6 @@
#include <utils/fileutils.h>
#include <QPointer>
#include <QStringListModel>
QT_FORWARD_DECLARE_CLASS(QCheckBox)
namespace Git {
@@ -56,7 +53,7 @@ public:
const TextEditor::FileFindParameters &parameters) override;
private:
QPointer<QCheckBox> m_widget;
QCheckBox *m_widget;
};
} // namespace Internal