summaryrefslogtreecommitdiffstats
path: root/logic/screenshots/Screenshot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'logic/screenshots/Screenshot.cpp')
-rw-r--r--logic/screenshots/Screenshot.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/logic/screenshots/Screenshot.cpp b/logic/screenshots/Screenshot.cpp
deleted file mode 100644
index 882e491f..00000000
--- a/logic/screenshots/Screenshot.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "Screenshot.h"
-#include <QImage>
-#include <QIcon>
-QIcon ScreenShot::getImage()
-{
- if(!imageloaded)
- {
- QImage image(file);
- QImage thumbnail = image.scaledToWidth(256, Qt::SmoothTransformation);
- m_image = QIcon(QPixmap::fromImage(thumbnail));
- imageloaded = true;
- }
- return m_image;
-}