From f3850f2cf7f4428eed3be0efe9a7c440b9e4d950 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 20 Jul 2012 18:32:41 +0300 Subject: Fix code style. --- src/gui/widgets/dropdown.cpp | 12 ++++++------ src/gui/widgets/dropdown.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gui/widgets') diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index 8b5f81e6b..a52f70926 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -45,7 +45,7 @@ int DropDown::instances = 0; Image *DropDown::buttons[2][2]; -ImageRect DropDown::skin; +ImageRect DropDown::skinRect; float DropDown::mAlpha = 1.0; static std::string const dropdownFiles[2] = @@ -96,7 +96,7 @@ DropDown::DropDown(gcn::ListModel *listModel, gcn::ActionListener* listener, // get the border skin if (Theme::instance()) - Theme::instance()->loadRect(skin, "dropdown_background.xml"); + Theme::instance()->loadRect(skinRect, "dropdown_background.xml"); } instances++; @@ -126,7 +126,7 @@ DropDown::~DropDown() } } if (Theme::instance()) - Theme::instance()->unloadRect(skin); + Theme::instance()->unloadRect(skinRect); } delete mScrollArea; mScrollArea = nullptr; @@ -152,8 +152,8 @@ void DropDown::updateAlpha() for (int a = 0; a < 9; a++) { - if (skin.grid[a]) - skin.grid[a]->setAlpha(mAlpha); + if (skinRect.grid[a]) + skinRect.grid[a]->setAlpha(mAlpha); } } } @@ -208,7 +208,7 @@ void DropDown::drawFrame(gcn::Graphics *graphics) const int w = getWidth() + bs * 2; const int h = getHeight() + bs * 2; - static_cast(graphics)->drawImageRect(0, 0, w, h, skin); + static_cast(graphics)->drawImageRect(0, 0, w, h, skinRect); } void DropDown::drawButton(gcn::Graphics *graphics) diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index 5896042fa..c044e8a16 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -97,7 +97,7 @@ class DropDown : public gcn::DropDown // Add own Images. static int instances; static Image *buttons[2][2]; - static ImageRect skin; + static ImageRect skinRect; static float mAlpha; }; -- cgit v1.2.3-70-g09d2