Skip to content

Commit

Permalink
Code format - (Clang-format)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 1, 2024
1 parent deb19da commit 9c18c81
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions source/find_item_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ FindItemDialog::FindItemDialog(wxWindow* parent, const wxString &title, bool onl
wxBoxSizer* optionsBoxSizer = newd wxBoxSizer(wxVERTICAL);

wxString radioBoxChoices[] = { "Find by Server ID",
"Find by Client ID",
"Find by Name",
"Find by Types",
"Find by Tile Types",
"Find by Properties" };
"Find by Client ID",
"Find by Name",
"Find by Types",
"Find by Tile Types",
"Find by Properties" };

int radioBoxChoicesSize = sizeof(radioBoxChoices) / sizeof(wxString);
optionsRadioBox = newd wxRadioBox(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, radioBoxChoicesSize, radioBoxChoices, 1, wxRA_SPECIFY_COLS);
Expand Down Expand Up @@ -87,14 +87,14 @@ FindItemDialog::FindItemDialog(wxWindow* parent, const wxString &title, bool onl
wxStaticBoxSizer* typeBoxSizer = newd wxStaticBoxSizer(newd wxStaticBox(this, wxID_ANY, "Types"), wxVERTICAL);

wxString typesChoices[] = { "Depot",
"Mailbox",
"Trash Holder",
"Container",
"Door",
"Magic Field",
"Teleport",
"Bed",
"Key" };
"Mailbox",
"Trash Holder",
"Container",
"Door",
"Magic Field",
"Teleport",
"Bed",
"Key" };

int typesChoicesCount = sizeof(typesChoices) / sizeof(wxString);
typesRadioBox = newd wxRadioBox(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, typesChoicesCount, typesChoices, 1, wxRA_SPECIFY_COLS);
Expand Down

0 comments on commit 9c18c81

Please sign in to comment.