Formatting

This commit is contained in:
Jonas Kvinge
2021-06-12 20:53:23 +02:00
parent 427b9c1ebc
commit f786a17014
117 changed files with 444 additions and 434 deletions

View File

@@ -346,17 +346,17 @@ void NotificationsSettingsPage::PrepareNotificationPreview() {
}
void NotificationsSettingsPage::InsertVariableFirstLine(QAction* action) {
void NotificationsSettingsPage::InsertVariableFirstLine(QAction *action) {
// We use action name, therefore those shouldn't be translatable
ui_->notifications_custom_text1->insert(action->text());
}
void NotificationsSettingsPage::InsertVariableSecondLine(QAction* action) {
void NotificationsSettingsPage::InsertVariableSecondLine(QAction *action) {
// We use action name, therefore those shouldn't be translatable
ui_->notifications_custom_text2->insert(action->text());
}
void NotificationsSettingsPage::ShowMenuTooltip(QAction* action) {
void NotificationsSettingsPage::ShowMenuTooltip(QAction *action) {
QToolTip::showText(QCursor::pos(), action->toolTip());
}