From 691a11989ee1b9eac2e4410894499d544b55fdba Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 23 Oct 2021 20:55:28 +0200 Subject: [PATCH] Move wxBitmap::ConvertToDisabled() to respect alphabetic order No real changes, just keep the functions sorted as they're clearly intended to be here. This commit is best viewed with --color-moved git option. --- interface/wx/bitmap.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/interface/wx/bitmap.h b/interface/wx/bitmap.h index 734605e350..da167982f1 100644 --- a/interface/wx/bitmap.h +++ b/interface/wx/bitmap.h @@ -402,6 +402,15 @@ public: */ static void CleanUpHandlers(); + /** + Returns disabled (dimmed) version of the bitmap. + + This method is not available when wxUSE_IMAGE == 0. + + @since 2.9.0 + */ + wxBitmap ConvertToDisabled(unsigned char brightness = 255) const; + /** Creates an image from a platform-dependent bitmap. This preserves mask information so that bitmaps and images can be converted back @@ -577,15 +586,6 @@ public: */ wxSize GetSize() const; - /** - Returns disabled (dimmed) version of the bitmap. - - This method is not available when wxUSE_IMAGE == 0. - - @since 2.9.0 - */ - wxBitmap ConvertToDisabled(unsigned char brightness = 255) const; - /** Gets the width of the bitmap in pixels.