From da27b51fdd7d1036c40232fdd55a052b7bb1e813 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 7 Dec 2020 23:28:52 +0100 Subject: [PATCH] cc_types: rename order_id -> sort_id for more plausibility Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/60188e80abf89bea26317053da2d41180eb65238 Author: Thilo Graf Date: 2020-12-07 (Mon, 07 Dec 2020) --- src/gui/components/cc_types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/components/cc_types.h b/src/gui/components/cc_types.h index 07f501fa4..a26bdfd46 100644 --- a/src/gui/components/cc_types.h +++ b/src/gui/components/cc_types.h @@ -200,16 +200,16 @@ typedef struct button_label_cc int btn_alias; std::string bg_image; std::string hint; - uint32_t order_id; + uint32_t sort_id; //defaults button_label_cc(): button(NULL), text(std::string()), locale(NONEXISTANT_LOCALE), directKeys(0, RC_NOKEY /*CRCInput::RC_nokey*/), - order_id(0){} + sort_id(0){} bool operator< (const button_label_cc& i) const { - return this->order_id < i.order_id ; + return this->sort_id < i.sort_id ; } } button_label_cc_struct;