From a05f2cb318cb221fec09e887d83f0b2af16f42f7 Mon Sep 17 00:00:00 2001
From: Roberto Raggi <roberto.raggi@nokia.com>
Date: Wed, 27 Jan 2010 09:24:49 +0100
Subject: [PATCH] Check the file extension before computing the component's
 name.

---
 src/libs/qmljs/qmljsdocument.cpp | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/libs/qmljs/qmljsdocument.cpp b/src/libs/qmljs/qmljsdocument.cpp
index b8aef81f6af..f93480152e2 100644
--- a/src/libs/qmljs/qmljsdocument.cpp
+++ b/src/libs/qmljs/qmljsdocument.cpp
@@ -50,11 +50,16 @@ Document::Document(const QString &fileName)
 {
     QFileInfo fileInfo(fileName);
     _path = fileInfo.absolutePath();
-    _componentName = fileInfo.baseName();
-    if (! _componentName.isEmpty()) {
-        // ### TODO: check the component name.
-        if (! _componentName.at(0).isUpper())
-            _componentName.clear();
+
+    if (fileInfo.suffix() == QLatin1String("qml")) {
+        _componentName = fileInfo.baseName();
+
+        if (! _componentName.isEmpty()) {
+            // ### TODO: check the component name.
+
+            if (! _componentName.at(0).isUpper())
+                _componentName.clear();
+        }
     }
 }
 
-- 
GitLab