Skip to content

Commit

Permalink
Update OnlineManagerWidget.cpp
Browse files Browse the repository at this point in the history
Fixe #elif to #else
  • Loading branch information
doumdi committed Dec 15, 2023
1 parent e4c1d70 commit 3c992f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/widgets/OnlineManagerWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ void OnlineManagerWidget::updateOnlineParticipant(const TeraData *online_partici
if (!site.isEmpty() && !project.isEmpty())
tooltip += "\n" + site + "\n" + project;
participant_item->setToolTip(0, tooltip);
#elif
#else
if (!site.isEmpty() && !project.isEmpty())
participant_item->setToolTip(0, site + "\n" + project);
#endif
Expand Down

0 comments on commit 3c992f8

Please sign in to comment.