diff options
| author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
|---|---|---|
| committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
| commit | bb22e7b2a0af67cc65ce5179917b20e5977ed4ef (patch) | |
| tree | 120e18f5a61144f3f632263e05cb49109f672615 /plugins/Skins/SkinLib/ButtonFieldState.cpp | |
| parent | 3b8d44fb4646951be55b3777cbe30d3280867067 (diff) | |
MyDetails reverted to older version that doesn't use Skins plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Skins/SkinLib/ButtonFieldState.cpp')
| -rw-r--r-- | plugins/Skins/SkinLib/ButtonFieldState.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/Skins/SkinLib/ButtonFieldState.cpp b/plugins/Skins/SkinLib/ButtonFieldState.cpp deleted file mode 100644 index 986484b20b..0000000000 --- a/plugins/Skins/SkinLib/ButtonFieldState.cpp +++ /dev/null @@ -1,30 +0,0 @@ -#include "globals.h"
-#include "ButtonFieldState.h"
-
-ButtonFieldState::ButtonFieldState(DialogState *dialog, ControlField *field)
- : ControlFieldState(dialog, field)
-{
-}
-
-ButtonFieldState::~ButtonFieldState()
-{
-}
-
-Size ButtonFieldState::getPreferedSize() const
-{
- Size ret = getTextPreferedSize(DT_SINGLELINE);
-
- int border = getField()->getBorderSize();
- ret.x += 2 * border;
- ret.y += 2 * border;
-
- ret.x += 12;
- ret.y += 10;
-
- return ret;
-}
-
-bool ButtonFieldState::isEmpty() const
-{
- return false;
-}
\ No newline at end of file |
