Fixed wrong behavior of "Move Component in Separate File" for qml.

The dialog accepted/rejected value is now checked.

Task-number: QTCREATORBUG-14175
Change-Id: I9a39c0cf87b7e11613a333b2d3a63b77e39b6d97
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Marco Benelli
2015-03-23 15:53:23 +01:00
parent 7aa8ae54ae
commit a212b1f745
3 changed files with 9 additions and 3 deletions

View File

@@ -103,7 +103,10 @@ public:
{
QString componentName = m_componentName;
QString path = QFileInfo(fileName()).path();
ComponentNameDialog::go(&componentName, &path, Core::ICore::dialogParent());
bool confirm = ComponentNameDialog::go(&componentName, &path, Core::ICore::dialogParent());
if (!confirm)
return;
if (componentName.isEmpty() || path.isEmpty())
return;