diff options
author | frosch <frosch@openttd.org> | 2009-11-27 16:18:03 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2009-11-27 16:18:03 +0000 |
commit | a37ca47882479e0f5b1461053993302e31ce568d (patch) | |
tree | 834505876895593252835e8adcd3350ccdd44e0d /src/widgets | |
parent | 5dc2e2831d4387106ec3dea09678d3a0aa6c21d7 (diff) | |
download | openttd-a37ca47882479e0f5b1461053993302e31ce568d.tar.xz |
(svn r18305) -Codechange: Replace some 2s with WD_FRAMERECT_(LEFT|RIGHT).
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/dropdown.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp index f2a7b80dd..80959f155 100644 --- a/src/widgets/dropdown.cpp +++ b/src/widgets/dropdown.cpp @@ -37,7 +37,7 @@ uint DropDownListStringItem::Width() const void DropDownListStringItem::Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const { - DrawString(left + 2, right - 2, top, this->String(), sel ? TC_WHITE : TC_BLACK); + DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, this->String(), sel ? TC_WHITE : TC_BLACK); } StringID DropDownListParamStringItem::String() const @@ -53,7 +53,7 @@ uint DropDownListCharStringItem::Width() const void DropDownListCharStringItem::Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const { - DrawString(left + 2, right - 2, top, this->string, sel ? TC_WHITE : TC_BLACK); + DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, this->string, sel ? TC_WHITE : TC_BLACK); } /** |