summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/IconField.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Skins/SkinLib/IconField.cpp')
-rw-r--r--plugins/Skins/SkinLib/IconField.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/plugins/Skins/SkinLib/IconField.cpp b/plugins/Skins/SkinLib/IconField.cpp
deleted file mode 100644
index 4cf1aaf532..0000000000
--- a/plugins/Skins/SkinLib/IconField.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-#include "globals.h"
-#include "IconField.h"
-#include "IconFieldState.h"
-
-
-IconField::IconField(Dialog *dlg, const char *name)
- : Field(dlg, name), hIcon(NULL)
-{
-
-}
-
-IconField::~IconField()
-{
-}
-
-FieldType IconField::getType() const
-{
- return SIMPLE_ICON;
-}
-
-HICON IconField::getIcon() const
-{
- return hIcon;
-}
-
-void IconField::setIcon(HICON hIcon)
-{
- if (this->hIcon == hIcon)
- return;
-
- this->hIcon = hIcon;
- fireOnChange();
-}
-
-FieldState * IconField::createState(DialogState *dialogState)
-{
- return new IconFieldState(dialogState, this);
-} \ No newline at end of file