Skip to content

Commit

Permalink
Update headers to 6221
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Nov 30, 2023
1 parent db90b45 commit eecab91
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/common/unicode/farcolor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
farcolor.hpp
Colors Index for FAR Manager 3.0.6218.0
Colors Index for FAR Manager 3.0.6221.0
*/
/*
Copyright © 1996 Eugene Roshal
Expand Down
12 changes: 9 additions & 3 deletions plugins/common/unicode/plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/*
plugin.hpp
Plugin API for Far Manager 3.0.6218.0
Plugin API for Far Manager 3.0.6221.0
*/
/*
Copyright © 1996 Eugene Roshal
Expand Down Expand Up @@ -44,7 +44,7 @@ other possible license with no implications from the above license on them.
#define FARMANAGERVERSION_MAJOR 3
#define FARMANAGERVERSION_MINOR 0
#define FARMANAGERVERSION_REVISION 0
#define FARMANAGERVERSION_BUILD 6218
#define FARMANAGERVERSION_BUILD 6221
#define FARMANAGERVERSION_STAGE VS_PRIVATE

#ifndef RC_INVOKED
Expand Down Expand Up @@ -710,12 +710,18 @@ struct FarDialogItemColors
struct FAR_CHAR_INFO
{
wchar_t Char;
wchar_t Reserved0;
int Reserved1;
struct FarColor Attributes;

#ifdef __cplusplus
bool operator==(const FAR_CHAR_INFO& rhs) const
{
return Char == rhs.Char && Attributes == rhs.Attributes;
return
Char == rhs.Char &&
Reserved0 == rhs.Reserved0 &&
Reserved1 == rhs.Reserved1 &&
Attributes == rhs.Attributes;
}

bool operator!=(const FAR_CHAR_INFO& rhs) const
Expand Down

0 comments on commit eecab91

Please sign in to comment.