1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-03 00:36:42 +00:00

Do not wrap emit expresison with parenthesis

To avoid warnings like following after clang-format applied:

apps/launcher/utils/profilescombobox.cpp:85:9: warning: misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation]
    emit(signalProfileChanged(mOldProfile, currentText()));
        ^
apps/launcher/utils/profilescombobox.cpp:82:5: note: previous statement is here
    if (index == -1)
    ^
This commit is contained in:
elsid 2022-09-12 15:56:38 +02:00
parent 409f83a149
commit f269406061
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625
2 changed files with 3 additions and 3 deletions

View file

@ -71,7 +71,7 @@ void ProfilesComboBox::slotEditingFinished()
return; return;
setItemText(currentIndex(), current); setItemText(currentIndex(), current);
emit(profileRenamed(previous, current)); emit profileRenamed(previous, current);
} }
void ProfilesComboBox::slotIndexChangedByUser(int index) void ProfilesComboBox::slotIndexChangedByUser(int index)
@ -79,7 +79,7 @@ void ProfilesComboBox::slotIndexChangedByUser(int index)
if (index == -1) if (index == -1)
return; return;
emit (signalProfileChanged(mOldProfile, currentText())); emit signalProfileChanged(mOldProfile, currentText());
mOldProfile = currentText(); mOldProfile = currentText();
} }

View file

@ -678,7 +678,7 @@ CSMPrefs::Category& CSMPrefs::State::operator[] (const std::string& key)
void CSMPrefs::State::update (const Setting& setting) void CSMPrefs::State::update (const Setting& setting)
{ {
emit (settingChanged (&setting)); emit settingChanged(&setting);
} }
CSMPrefs::State& CSMPrefs::State::get() CSMPrefs::State& CSMPrefs::State::get()