From 5d74b9271d30c95bffbfdaac1accc9af73dc5ec6 Mon Sep 17 00:00:00 2001
From: con <qtc-committer@nokia.com>
Date: Fri, 16 Oct 2009 10:40:57 +0200
Subject: [PATCH] Rename resource file.

---
 .../quickopen/images/{quickopen.png => locator.png} | Bin
 src/plugins/quickopen/locator.qrc                   |   6 ++++++
 src/plugins/quickopen/locatorwidget.cpp             |   2 +-
 src/plugins/quickopen/quickopen.pro                 |   2 +-
 src/plugins/quickopen/quickopen.qrc                 |   6 ------
 src/plugins/texteditor/texteditoractionhandler.cpp  |   6 +++---
 6 files changed, 11 insertions(+), 11 deletions(-)
 rename src/plugins/quickopen/images/{quickopen.png => locator.png} (100%)
 create mode 100644 src/plugins/quickopen/locator.qrc
 delete mode 100644 src/plugins/quickopen/quickopen.qrc

diff --git a/src/plugins/quickopen/images/quickopen.png b/src/plugins/quickopen/images/locator.png
similarity index 100%
rename from src/plugins/quickopen/images/quickopen.png
rename to src/plugins/quickopen/images/locator.png
diff --git a/src/plugins/quickopen/locator.qrc b/src/plugins/quickopen/locator.qrc
new file mode 100644
index 00000000000..4cd5df4f13d
--- /dev/null
+++ b/src/plugins/quickopen/locator.qrc
@@ -0,0 +1,6 @@
+<RCC>
+    <qresource prefix="/locator">
+        <file>images/reload.png</file>
+        <file>images/locator.png</file>
+    </qresource>
+</RCC>
diff --git a/src/plugins/quickopen/locatorwidget.cpp b/src/plugins/quickopen/locatorwidget.cpp
index 61679cb0616..88106647037 100644
--- a/src/plugins/quickopen/locatorwidget.cpp
+++ b/src/plugins/quickopen/locatorwidget.cpp
@@ -272,7 +272,7 @@ LocatorWidget::LocatorWidget(LocatorPlugin *qop) :
     layout->setMargin(0);
     layout->addWidget(m_fileLineEdit);
 
-    setWindowIcon(QIcon(":/quickopen/images/quickopen.png"));
+    setWindowIcon(QIcon(":/locator/images/locator.png"));
     QPixmap image(Core::Constants::ICON_MAGNIFIER);
     m_fileLineEdit->setPixmap(image);
     m_fileLineEdit->setUseLayoutDirection(true);
diff --git a/src/plugins/quickopen/quickopen.pro b/src/plugins/quickopen/quickopen.pro
index 0cf3907ce76..5b56c4edf09 100644
--- a/src/plugins/quickopen/quickopen.pro
+++ b/src/plugins/quickopen/quickopen.pro
@@ -28,6 +28,6 @@ SOURCES += locatorplugin.cpp \
 FORMS += settingspage.ui \
     filesystemfilter.ui \
     directoryfilter.ui
-RESOURCES += quickopen.qrc
+RESOURCES += locator.qrc
 
 OTHER_FILES += QuickOpen.pluginspec
diff --git a/src/plugins/quickopen/quickopen.qrc b/src/plugins/quickopen/quickopen.qrc
deleted file mode 100644
index 0ab0ff14fc2..00000000000
--- a/src/plugins/quickopen/quickopen.qrc
+++ /dev/null
@@ -1,6 +0,0 @@
-<RCC>
-    <qresource prefix="/quickopen" >
-        <file>images/quickopen.png</file>
-        <file>images/reload.png</file>
-    </qresource>
-</RCC>
diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp
index 11050285ff6..727d08d4d6c 100644
--- a/src/plugins/texteditor/texteditoractionhandler.cpp
+++ b/src/plugins/texteditor/texteditoractionhandler.cpp
@@ -360,11 +360,11 @@ void TextEditorActionHandler::updateCopyAction()
 
 void TextEditorActionHandler::gotoAction()
 {
-    QuickOpen::LocatorManager *quickopen = QuickOpen::LocatorManager::instance();
-    QTC_ASSERT(quickopen, return);
+    QuickOpen::LocatorManager *locatorManager = QuickOpen::LocatorManager::instance();
+    QTC_ASSERT(locatorManager, return);
     const QString shortcut = TextEditorPlugin::instance()->lineNumberFilter()->shortcutString();
     const QString text = tr(" <line number>");
-    quickopen->show(shortcut + text, 2, text.length()-1);
+    locatorManager->show(shortcut + text, 2, text.length()-1);
 }
 
 void TextEditorActionHandler::printAction()
-- 
GitLab