forked from blue/squawk
fix: empty statements
This commit is contained in:
parent
849159d5a5
commit
8d88aa5d09
8 changed files with 10 additions and 10 deletions
|
@ -211,7 +211,7 @@ QIcon Models::Contact::getStatusIcon(bool big) const
|
|||
if (getMessagesCount() > 0) {
|
||||
return Shared::icon("mail-message", big);
|
||||
} else if (state == Shared::SubscriptionState::both || state == Shared::SubscriptionState::to) {
|
||||
return Shared::availabilityIcon(availability, big);;
|
||||
return Shared::availabilityIcon(availability, big);
|
||||
} else {
|
||||
return Shared::subscriptionStateIcon(state, big);
|
||||
}
|
||||
|
|
|
@ -187,9 +187,9 @@ struct FeedItem {
|
|||
Shared::Message::State state;
|
||||
Attachment attach;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Q_DECLARE_METATYPE(Models::Attachment);
|
||||
Q_DECLARE_METATYPE(Models::FeedItem);
|
||||
Q_DECLARE_METATYPE(Models::Attachment)
|
||||
Q_DECLARE_METATYPE(Models::FeedItem)
|
||||
|
||||
#endif // MESSAGEFEED_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue