From 1ad26e2a7f4d5598a803947b978cfa5a6cdd030f Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 22 Apr 2009 22:55:15 +0000 Subject: [PATCH] Swapped k{Up,Down}SortArrow*. This not only makes the naming more intuitive (the "down" arrow actually points down, now), it also uses the arrows consistent with Tracker -- i.e. arrow pointing down means ascending order. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30340 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/ColumnListView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/kits/interface/ColumnListView.cpp b/src/kits/interface/ColumnListView.cpp index 53d5a97939..eb188b7f45 100644 --- a/src/kits/interface/ColumnListView.cpp +++ b/src/kits/interface/ColumnListView.cpp @@ -127,7 +127,7 @@ static const unsigned char kColumnMoveCursorData[] = { 0x0f, 0xf0, 0x07, 0xe0, 0x03, 0xc0, 0x01, 0x80 }; -static const unsigned char kUpSortArrow8x8[] = { +static const unsigned char kDownSortArrow8x8[] = { 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, @@ -138,7 +138,7 @@ static const unsigned char kUpSortArrow8x8[] = { 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0xff }; -static const unsigned char kDownSortArrow8x8[] = { +static const unsigned char kUpSortArrow8x8[] = { 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, @@ -149,7 +149,7 @@ static const unsigned char kDownSortArrow8x8[] = { 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff }; -static const unsigned char kUpSortArrow8x8Invert[] = { +static const unsigned char kDownSortArrow8x8Invert[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, @@ -160,7 +160,7 @@ static const unsigned char kUpSortArrow8x8Invert[] = { 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff }; -static const unsigned char kDownSortArrow8x8Invert[] = { +static const unsigned char kUpSortArrow8x8Invert[] = { 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x1f, 0x1f, 0xff, 0xff, 0xff,