Git: Fix crash

An asynchronous command deletes itself when it ends.
Raw pointer is a bad idea.

Task-number: QTCREATORBUG-15051
Change-Id: Ie2b3a90e308a4bb1e414f924a836d816abf1dfd1
Reviewed-by: Robert Loehning <robert.loehning@theqtcompany.com>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Orgad Shaneh
2015-09-09 22:04:17 +03:00
committed by Orgad Shaneh
parent 506c0685a3
commit a2bd8e11f6

View File

@@ -134,7 +134,7 @@ protected:
const QString m_directory;
private:
VcsCommand *m_command;
QPointer<VcsCommand> m_command;
};
BaseController::BaseController(IDocument *document, const QString &dir) :