summaryrefslogtreecommitdiffstats
path: root/tools/designer
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-07-22 12:16:22 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2009-07-22 12:16:22 (GMT)
commit5ef9227a5931e87cd18354967013056ef59405ca (patch)
treedea07caa94be3b92702951813d373120cee81071 /tools/designer
parente3994b506c21b9967248ea404cfdfef82060c13e (diff)
parent6c25a7cdea912f212ce00f43c7cfc862c1ecdd50 (diff)
downloadQt-5ef9227a5931e87cd18354967013056ef59405ca.zip
Qt-5ef9227a5931e87cd18354967013056ef59405ca.tar.gz
Qt-5ef9227a5931e87cd18354967013056ef59405ca.tar.bz2
Merge commit 'origin/4.5'
Conflicts: src/gui/graphicsview/qgraphicsscene.cpp src/gui/kernel/qt_cocoa_helpers_mac_p.h
Diffstat (limited to 'tools/designer')
-rw-r--r--tools/designer/src/components/propertyeditor/designerpropertymanager.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/designer/src/components/propertyeditor/designerpropertymanager.cpp b/tools/designer/src/components/propertyeditor/designerpropertymanager.cpp
index fb1a5bb..ca55b15 100644
--- a/tools/designer/src/components/propertyeditor/designerpropertymanager.cpp
+++ b/tools/designer/src/components/propertyeditor/designerpropertymanager.cpp
@@ -254,8 +254,11 @@ void TextEditor::resourceActionActivated()
{
QString oldPath = m_editor->text();
if (oldPath.startsWith(QLatin1String("qrc:")))
- oldPath = oldPath.mid(4);
- const QString newPath = IconSelector::choosePixmapResource(m_core, m_core->resourceModel(), oldPath, this);
+ oldPath.remove(0, 4);
+ // returns ':/file'
+ QString newPath = IconSelector::choosePixmapResource(m_core, m_core->resourceModel(), oldPath, this);
+ if (newPath.startsWith(QLatin1Char(':')))
+ newPath.remove(0, 1);
if (newPath.isEmpty() || newPath == oldPath)
return;
const QString newText = QLatin1String("qrc:") + newPath;