summaryrefslogtreecommitdiffstats
path: root/tests/auto/other/lancelot/paintcommands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/other/lancelot/paintcommands.cpp')
-rw-r--r--tests/auto/other/lancelot/paintcommands.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/other/lancelot/paintcommands.cpp b/tests/auto/other/lancelot/paintcommands.cpp
index 971b9b5fe7..c28812e120 100644
--- a/tests/auto/other/lancelot/paintcommands.cpp
+++ b/tests/auto/other/lancelot/paintcommands.cpp
@@ -263,7 +263,7 @@ void PaintCommands::staticInit()
"path_setFillRule pathName Winding");
DECL_PAINTCOMMAND("setBrush", command_setBrush,
"^setBrush\\s+(#?[\\w.:\\/]*)\\s*(\\w*)?$",
- "setBrush <pixmapFileName>\nsetBrush noBrush\nsetBrush <color> <brush style enum>",
+ "setBrush <imageFileName>\nsetBrush noBrush\nsetBrush <color> <brush style enum>",
"setBrush white SolidPattern");
DECL_PAINTCOMMAND("setBrushOrigin", command_setBrushOrigin,
"^setBrushOrigin\\s*(-?\\w*)\\s+(-?\\w*)$",
@@ -1752,13 +1752,13 @@ void PaintCommands::command_setBrush(QRegExp re)
{
QStringList caps = re.capturedTexts();
- QPixmap pm = image_load<QPixmap>(caps.at(1));
- if (!pm.isNull()) { // Assume pixmap
+ QImage img = image_load<QImage>(caps.at(1));
+ if (!img.isNull()) { // Assume image brush
if (m_verboseMode)
- printf(" -(lance) setBrush(pixmap=%s, width=%d, height=%d)\n",
- qPrintable(caps.at(1)), pm.width(), pm.height());
+ printf(" -(lance) setBrush(image=%s, width=%d, height=%d)\n",
+ qPrintable(caps.at(1)), img.width(), img.height());
- m_painter->setBrush(QBrush(pm));
+ m_painter->setBrush(QBrush(img));
} else if (caps.at(1).toLower() == "nobrush") {
m_painter->setBrush(Qt::NoBrush);
if (m_verboseMode)