summaryrefslogtreecommitdiff
path: root/examples/svg/embedded/fluidlauncher/demoapplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/svg/embedded/fluidlauncher/demoapplication.cpp')
-rw-r--r--examples/svg/embedded/fluidlauncher/demoapplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/svg/embedded/fluidlauncher/demoapplication.cpp b/examples/svg/embedded/fluidlauncher/demoapplication.cpp
index ea7f5d6..a5d288f 100644
--- a/examples/svg/embedded/fluidlauncher/demoapplication.cpp
+++ b/examples/svg/embedded/fluidlauncher/demoapplication.cpp
@@ -75,9 +75,9 @@ void DemoApplication::launch()
process.start(executablePath, arguments);
}
-QImage* DemoApplication::getImage()
+QImage DemoApplication::getImage() const
{
- return new QImage(imagePath);
+ return imagePath.isEmpty() ? QImage() : QImage(imagePath);
}
QString DemoApplication::getCaption()