diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-03 02:11:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-04 23:57:02 +0300 |
commit | 0647852f65598ef9cb9ebff6dfb508e8b1a98c1c (patch) | |
tree | 4cc9395e820e60f3d511351b78fe187e897a8c7e /src/gui/widgets/checkbox.cpp | |
parent | c52472123eb7847b5cee6b1898c42ef25a5466dd (diff) | |
download | plus-0647852f65598ef9cb9ebff6dfb508e8b1a98c1c.tar.gz plus-0647852f65598ef9cb9ebff6dfb508e8b1a98c1c.tar.bz2 plus-0647852f65598ef9cb9ebff6dfb508e8b1a98c1c.tar.xz plus-0647852f65598ef9cb9ebff6dfb508e8b1a98c1c.zip |
Add support for default theme file names.
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index ab08a95d0..04ac998bf 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -56,7 +56,7 @@ CheckBox::CheckBox(const std::string &caption, bool selected, if (Theme::instance()) { ImageRect rect; - Theme::instance()->loadRect(rect, "checkbox.xml", 0, 5); + Theme::instance()->loadRect(rect, "checkbox.xml", "", 0, 5); checkBoxNormal = rect.grid[0]; checkBoxChecked = rect.grid[1]; checkBoxDisabled = rect.grid[2]; |