diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-30 02:53:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-30 22:00:10 +0300 |
commit | 793bcbe5d8308c8c33419f67378df9dc83462445 (patch) | |
tree | ad03064158e791e4831c5f67e174babeba66a1f7 /src/gui/widgets/window.cpp | |
parent | 03d04b42b9578616715a4483b0ef581f1fb11fd8 (diff) | |
download | ManaVerse-793bcbe5d8308c8c33419f67378df9dc83462445.tar.gz ManaVerse-793bcbe5d8308c8c33419f67378df9dc83462445.tar.bz2 ManaVerse-793bcbe5d8308c8c33419f67378df9dc83462445.tar.xz ManaVerse-793bcbe5d8308c8c33419f67378df9dc83462445.zip |
Add addition options to skin objects.
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r-- | src/gui/widgets/window.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index d2ba03e07..f84376f2d 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -1022,3 +1022,10 @@ gcn::Rectangle Window::getWindowArea() getWidth() - getPadding() * 2, getHeight() - getPadding() * 2); } + +int Window::getOption(std::string name) +{ + if (mSkin) + return mSkin->getOption(name); + return 0; +} |